here is my formula I'm using to add the prefix B if the value is numeric. But it is adding the prefix it is varchar also. What formula I need to use to just add the prefix to numeric value
IF IsInteger([broker]) then "B"+[broker] else [broker] endif
Brokers Expected results
006578 B006578
548979 B548979
1AD55 1AD55
AAAD AAAD
If you look at the above example, I'm expecting the prefix just for the first two rows. Please advise what formula I need to use.