Forum Discussion
Anonymous
5 years agoNot applicable
Multiplication with a text condition
Hello, i need to multiple the value in a column to a specific value based in a text condition Ex : IF text = ABC Table1(column1) * 8 else column2 I need it for 6 different texts, like ABC an...
- 5 years ago
Do you mean something like this?
NewColumn = IF(Table[Column1] in {"ABC", "CDE", "EFG", "GHI"}, Table[Column2] * 8, Table[Column3])
Regards,
Pat
Anonymous
5 years agoNot applicable
It worked perfectly for me mahoneypat , i also did some additional IF to have differente multiplication for each text condition!
Thank you so much for your help!