Forum Discussion
Anonymous
4 years agoNot applicable
Calculated Column If Statement
Hi Experts Need and if statement to do the following based on the flag column.... (see sample date) if we have 1 in the flag column then in the new status column insert the text from Amended Sta...
- 4 years ago
Anonymous
Column = IF('Table'[Flag]=1,'Table'[Amended Status],'Table'[Current Status]) Measure = IF(max('Table'[Flag])=1,max('Table'[Amended Status]),max('Table'[Current Status]))
smpa01
4 years agoCommunity Champion
Anonymous
Column = IF('Table'[Flag]=1,'Table'[Amended Status],'Table'[Current Status])
Measure = IF(max('Table'[Flag])=1,max('Table'[Amended Status]),max('Table'[Current Status]))