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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
NLUAnalytics
New Member

Tableau IF Statement to Power

Hi everyone,

 

Reaching out for help on a Power BI issue for a marketing report.

 

  • Does anyone know how to translate this simple IF statement to a Power BI custom measure?

 

Prior Year Leads = if [SF_INQUIRY_DATE_FY] = 'FY 2020' then [SF_LEAD] end

 

Basically, I’m looking to say that if the leads are in fiscal year 2020, then call it ‘Prior Year Leads’. In other words, how do you translate IF statement from Tableau to Power BI.

 

Thank you!

1 ACCEPTED SOLUTION
v-kelly-msft
Community Support
Community Support

Hi @NLUAnalytics ,

 

If you wanna create a calculated column,it would be like:

Prior Year Leads = if([SF_INQUIRY_DATE_FY] = 'FY 2020' , [SF_LEAD] , blank())

If you wanna create a measure,then it would be like:

Prior Year Leads = if(MAX([SF_INQUIRY_DATE_FY]) = 'FY 2020' , MAX([SF_LEAD]) , blank())

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

View solution in original post

2 REPLIES 2
v-kelly-msft
Community Support
Community Support

Hi @NLUAnalytics ,

 

If you wanna create a calculated column,it would be like:

Prior Year Leads = if([SF_INQUIRY_DATE_FY] = 'FY 2020' , [SF_LEAD] , blank())

If you wanna create a measure,then it would be like:

Prior Year Leads = if(MAX([SF_INQUIRY_DATE_FY]) = 'FY 2020' , MAX([SF_LEAD]) , blank())

 

Best Regards,
Kelly

Did I answer your question? Mark my post as a solution!

amitchandak
Super User
Super User

@NLUAnalytics , If in dax would be like

 

Prior Year Leads = if([SF_INQUIRY_DATE_FY] = 'FY 2020' , [SF_LEAD] , blank())

 

This Year vs last year
YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD('Date'[Date],"12/31"))
Last YTD Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(dateadd('Date'[Date],-1,Year),"12/31"))
This year Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(ENDOFYEAR('Date'[Date]),"12/31"))
Last year Sales = CALCULATE(SUM(Sales[Sales Amount]),DATESYTD(ENDOFYEAR(dateadd('Date'[Date],-1,Year)),"12/31"))

Year behind Sales = CALCULATE(SUM(Sales[Sales Amount]),dateadd('Date'[Date],-1,Year))

Power BI — Year on Year with or Without Time Intelligence
https://medium.com/@amitchandak.1978/power-bi-ytd-questions-time-intelligence-1-5-e3174b39f38a

 

To get the best of the time intelligence function. Make sure you have a date calendar and it has been marked as the date in model view. Also, join it with the date column of your fact/s. Refer :radacad sqlbi My Video Series Appreciate your Kudos.

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.