Forum Discussion
Anonymous
3 years agoNot applicable
Need help Tableau to DAX
Hi, Can you help me convert this TABLEAU formula to DAX?: if [Status]= 'Added' then [Frequency] else -1*[Frequency] end Many thanks!
Tahreem24
Super User
3 years agoAnonymous Use this DAX:
IF(Table[Status] = "Added" , SUM(Frequency), -1*SUM(Frequency)
Anonymous
3 years agoNot applicable
With this formula I have the text column as a suggestion, but the column status is still not available from this table