Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
Anonymous
Not 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 Status column otherwise Current Status value in New status column.

 

IDCurrent StatusAmended StatusFlagNew Status
1New Business   
2New BusinessRenewal1 
3Renewal   
4New BusinessRenewal1 
5Renewal   
6New BusinessRenewal1 
7Renewal   
8New Business   
9RenewalNew Business1 
10RenewalNew Business1 
1 ACCEPTED SOLUTION
smpa01
Super User
Super User

@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]))
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

View solution in original post

1 REPLY 1
smpa01
Super User
Super User

@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]))
Did I answer your question? Mark my post as a solution!
Proud to be a Super User!
My custom visualization projects
Plotting Live Sound: Viz1
Beautiful News:Viz1, Viz2, Viz3
Visual Capitalist: Working Hrs

Helpful resources

Announcements
PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.