Forum Discussion
WinYit
3 years agoFrequent Visitor
How to make a calculation
Hi, May I know how to add another row to make the addition calculation. If 0 + unlimited, the result show unlimited.
pottsbi
3 years agoFrequent Visitor
I'm not too sure what exactly is being asked but I will answer the best I can. You want to add a row to that table that returns unlimited if the value in column a is "0" and the value in column b is "unlimited"? If so, I would just make a measure and add that to the table. The measure would be something like
Measure Name = If(AND(Table['Column A'] = "0", Table['Column B'] = "Unlimited"),
"Unlimited",
"Else Value"
)This is assuming both fields are of type string