Forum Discussion
Anonymous
3 years agoNot applicable
IF is true command
Could you please help me with the formula for 'IF' IF ( Table[Column1] = TRUE (), 1, 0 ) I've tried several times but no success.
I need a new varaible:
if 'change planned' = true, then 'New CM'
if 'change planned = false, then 'CM'
Many thanks!! π
Hi Anonymous ,
Here is the solutionπ...
New Calculated Column = SWITCH(TRUE(),'Table'[Changed Planned] = TRUE(), 'Table'[new CM],'Table'[Changed Planned] = FALSE(), 'Table'[CM])Many Thanks,TaylorLinkedIn: www.linkedin.com/in/taylordownes10
3 Replies
- Greg_DecklerCommunity Champion
Anonymous Maybe:
IF ( Table[Column1] = "TRUE", 1, 0 ) - TaylorPBI21Resolver I
Hi Anonymous ,
Here is the solutionπ...
New Calculated Column = SWITCH(TRUE(),'Table'[Changed Planned] = TRUE(), 'Table'[new CM],'Table'[Changed Planned] = FALSE(), 'Table'[CM])Many Thanks,TaylorLinkedIn: www.linkedin.com/in/taylordownes10- AnonymousNot applicable
TaylorPBI21 you are a start! That worked perfectly. Much a ppreciated! π