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
mcraven1845
Frequent Visitor

convert excel formula to powerbi function - calc start date from end date - duration (D/W/M/Y)

excelformula.jpg

 

I need to check the duration to determine if it is days/weeks/months/years and then do a different forumla to get the start date.  I can do this in excel but I don't know what reserve words work in power bi.  If you know of a better way to do this with some reserved function or formula or measure in power bi please share with me.  I will be so grateful.  thanks. Michelle

 

Here is the actual completed formula but I first have to split the duration into two columns separating out the number.  Also I made functions for each type.

 

=IF(VLOOKUP(E3,USEFRM,2,TRUE)="CALCDAY",CALCDAY(C3,D3),IF(VLOOKUP(E3,USEFRM,2,TRUE)="CALCWEEK",CALCWEEK(C3,D3),IF(VLOOKUP(E3,USEFRM,2,TRUE)="CALCMONTH",CALCMONTH(C3,D3),CALCYEAR(C3,D3))))

 

1 ACCEPTED SOLUTION

Thank you for replying... I figure out a way first using the DAX side then I went back to the power query editor and created a function to add the new column with the desired results.  Going back and forth between syntax is keeping me on my toes.  

 

Below is the function I created that is working.

 

let StartUpgradeDate = (DurTime,DurCnt,UpgradeRpDate) => if DurTime="day" or DurTime="days" then
                                   Date.AddDays(UpgradeRpDate, (DurCnt*-1))
                           else if DurTime="week" or DurTime="weeks" then
                                   Date.AddWeeks(UpgradeRpDate, (DurCnt*-1))
                           else if DurTime="month" or DurTime="months" then
                                  Date.AddMonths(UpgradeRpDate, (DurCnt*-1))
                           else if DurTime="year" or DurTime="years" then
                                  Date.AddYears(UpgradeRpDate, (DurCnt*-1))
                           else ""
in StartUpgradeDate

View solution in original post

2 REPLIES 2
v-yuta-msft
Community Support
Community Support

@mcraven1845 ,

 

In DAX, LOOKUPVALUE() is similar to VLOOPUP(), in addtion, I haven't found any reference about CALCWEEK(), CALCMONTH() and CALCYEAR(), however, you may refer to the time intelligence functions here.

 

Community Support Team _ Jimmy Tao

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Thank you for replying... I figure out a way first using the DAX side then I went back to the power query editor and created a function to add the new column with the desired results.  Going back and forth between syntax is keeping me on my toes.  

 

Below is the function I created that is working.

 

let StartUpgradeDate = (DurTime,DurCnt,UpgradeRpDate) => if DurTime="day" or DurTime="days" then
                                   Date.AddDays(UpgradeRpDate, (DurCnt*-1))
                           else if DurTime="week" or DurTime="weeks" then
                                   Date.AddWeeks(UpgradeRpDate, (DurCnt*-1))
                           else if DurTime="month" or DurTime="months" then
                                  Date.AddMonths(UpgradeRpDate, (DurCnt*-1))
                           else if DurTime="year" or DurTime="years" then
                                  Date.AddYears(UpgradeRpDate, (DurCnt*-1))
                           else ""
in StartUpgradeDate

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.