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 C...
- 3 years ago
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
TaylorPBI21
3 years agoResolver 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,
Taylor
LinkedIn: www.linkedin.com/in/taylordownes10
- Anonymous3 years agoNot applicable
TaylorPBI21 you are a start! That worked perfectly. Much a ppreciated! 😁