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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

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
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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