cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
aharro
Level I

Formatting numbers in a loop

Hello,

I'm formatting decimal numbers in a loop, and it works on the first row but the 2nd row and thereafter it throws a type error

		for each row(my_data,
		
			:my_col = Format( :my_col, "Fixed Dec", 16, 3, "Use thousands separator");
		);

Error: <Column "my_col" changed to type Character to match formula.>

First row everything formats fine but I can't seem to figure out why it fails after.

Thanks 

2 REPLIES 2
jthi
Super User

Re: Formatting numbers in a loop

Format() returns a string (or "quoted format"), so on first row you still have number which you use as input. Then JMP converts all the values to characters in the column -> no more number

Names Default To Here(1);

dt = New Table("Untitled",
	Add Rows(2),
	Compress File When Saved(1),
	New Column("Column 1", Numeric, "Continuous", Format("Best", 12), Set Values([1, 2]))
);

For Each Row(dt,
	show(type(:"Column 1"n));
	:"Column 1"n = Format(:"Column 1"n, "Fixed Dec", 16, 3, "Use thousands separator")
);
-Jarmo
jthi
Super User

Re: Formatting numbers in a loop

Also there should be no need to do this in a loop as you can just change the column properties (unless you want to possibly lose some precision, then you might want to loop)

Data Table("Untitled"):Column 1 << Format(
	"Fixed Dec",
	Use thousands separator(1),
	13,
	3
);
-Jarmo