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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Dragpunk
New Member

Converting Tableau Calculation to PowerBI DAX

Need help to convert the following below tableau calculation into dax

 

IF [Renewal Date] >= DATE(STR(DATEPART('year',[HighDateValue Max]))+'-'+STR(1)+'-'+STR(1))
AND [Renewal Date] <= DATE(STR(DATEPART('year',[HighDateValue Max]))+'-'+STR(3)+'-'+STR(31)) THEN '1 Jan - 31 Mar'
END

 

Renewal Date - date (Datatype)

HighDateValue Max - date (Datatype)

 

First line - DATE(STR(DATEPART('year',[HighDateValue Max]))+'-'+STR(1)+'-'+STR(1))

Output - 01-01-2016 01-01-2017 01-01-2018 01-01-2019 01-01-2020 01-01-2021 01-01-2022

 

Second line - DATE(STR(DATEPART('year',[HighDateValue Max]))+'-'+STR(3)+'-'+STR(31))

Output - 31-03-2016 31-03-2017 31-03-2018 31-03-2019 31-03-2020 31-03-2021 31-03-2022

 

2 REPLIES 2
Mrxiang
Helper II
Helper II

IF([Renewal Date] >= DATE(YEAR(HighDateValue[Max])+'-'&TEXT(DAY(HighDateValue[Max])+1)+'-'&TEXT(MONTH(HighDateValue[Max])+1))
AND [Renewal Date] <= DATE(YEAR(HighDateValue[Max])+'-'&TEXT(DAY(HighDateValue[Max])+3)+'-'&TEXT(MONTH(HighDateValue[Max])+3)))
THEN "1 Jan - 31 Mar"
END

SamInogic
Super User
Super User

Hi @Dragpunk ,

For first Line DATE(STR(DATEPART('year',[HighDateValue Max]))+'-'+STR(1)+'-'+STR(1)), you can use below DAX :


DATE(YEAR('Date Data'[HighDateValue Max ].[Date]), "1","1")

 

For Second Line DATE(STR(DATEPART('year',[HighDateValue Max]))+'-'+STR(1)+'-'+STR(1)), you can use below DAX:


DATE(YEAR('Date Data'[HighDateValue Max ].[Date]), "3","31")

 

And overall column can have below DAX expression:


DAX Result = IF('Date Data'[Renewal Date ].[Date] >= DATE(YEAR('Date Data'[HighDateValue Max ].[Date]), "1","1") && 'Date Data'[Renewal Date ].[Date] <= DATE(YEAR('Date Data'[HighDateValue Max ].[Date]), "3","31"), "1 Jan - 31 Mar")

 

This will give you below result for sample renewal date and HighDateValue Max,

 

SamInogic_0-1684909838899.png


If this answer helps, please mark it as an Accepted Solution so it would help others to find the solution.


Thanks!

Inogic Professional Service Division

An expert technical extension for your techno-functional business needs

Power Platform/Dynamics 365 CRM

Drop an email at crm@inogic.com

Service:  http://www.inogic.com/services/ 

Power Platform/Dynamics 365 CRM Tips and Tricks:  http://www.inogic.com/blog/

Inogic Professional Services: Power Platform/Dynamics 365 CRM
An expert technical extension for your techno-functional business needs
Drop an email at crm@inogic.com
Service: https://www.inogic.com/services/
Tips and Tricks: https://www.inogic.com/blog/

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.