Hi all,
I import CSV files with salary ranges.
There are two fields from CSV: “Salary Min” & “Salary Max”. Their format is $75,000.00.
I want to have them in one field ($75,000 - $100,000), so created a third field with the formula
IF(
AND({Salary Min}, {Salary Max}),
"$" & {Salary Min} & " - $" & {Salary Max} & "/yr",
""
)
However, I get “$75000 - $100000/yr”.
I looked around and tried AT’s AI but so far luck.
Is there a way I can resolve this?
Thanks a lot

