Forum Discussion
Anonymous
2 years agoNot applicable
Creating custom column based on 3 other colums
HI, Please help me to create a custom colum based on 3 other colums. 1. if patient type is OP then custom colum should reflect OP. 2. If patient type is only IP and Sponsor is only blank and Ne...
- 2 years ago
Hi Anonymous
Your net amount column is text please convert into interger / whole number.
select your net amount then convert to whole number.
Joe_Barry
2 years agoSolution Sage
Hi Anonymous
You are basically there with how you outlined your reuqirements.
CustomColumn =
IF(Table[Patient Type] = "IP" &&
Table[Sponsor]= BLANK() &&
Table[Net Amt] < 1000, "OP",
IF(Table[Patient Type] = "OP", "OP", "IP")
Hope this helps
Joe
- Anonymous2 years agoNot applicable
Thanks joe for your input. But i am getting the same error as below.