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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Ashley1
Frequent Visitor

How to convert Tableau calculation to Power BI?

Hello, 

I am very new to Power BI. My company is looking into option of transitioning to Power BI from Tableau.

My question is how do I convert Tableau Calculation to Power BI?

 

For eg:

DATE({FIXED [Order Number]: MIN(IF [Customer ID]='0510'
THEN [Order Date Time]
END )})

1 ACCEPTED SOLUTION
vicky_
Super User
Super User

Try something like:
Measure = CALCULATE(MIN(Table[Order Date Time]), Table[Customer ID]="0510", ALLEXCEPT(Table[Order Number]))

 

If you've already got the table grouped by Order Number, then you should be able to skip the last CALCULATE argument. 

Here's the docs for the above functions:
https://learn.microsoft.com/en-us/dax/allexcept-function-dax

https://learn.microsoft.com/en-us/dax/calculate-function-dax

and I also recommend giving this a read - https://www.sqlbi.com/articles/introducing-calculate-in-dax/ as it helped me a lot when I transitioned from Tableau to PowerBI.

View solution in original post

2 REPLIES 2
Ashley1
Frequent Visitor

Thank you @vicky_ for the solution and for the links. They seem to be very good source. Really appreciate it 🙂

vicky_
Super User
Super User

Try something like:
Measure = CALCULATE(MIN(Table[Order Date Time]), Table[Customer ID]="0510", ALLEXCEPT(Table[Order Number]))

 

If you've already got the table grouped by Order Number, then you should be able to skip the last CALCULATE argument. 

Here's the docs for the above functions:
https://learn.microsoft.com/en-us/dax/allexcept-function-dax

https://learn.microsoft.com/en-us/dax/calculate-function-dax

and I also recommend giving this a read - https://www.sqlbi.com/articles/introducing-calculate-in-dax/ as it helped me a lot when I transitioned from Tableau to PowerBI.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.