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
Anonymous
Not applicable

Calculating Projected using max week number and Projected Annual against goal

I have one table that shows a date, that date's week number, category, and number of conversions for that entry

 

powerbi1.JPG

 

I am looking to sum up the conversions by Category, but with taking the Max week number, taking the sum of each category and dividing it by the max week number. Then using that number and multiplying it by 52 to get my projected annual number. **Note, my data has 2020 data, so I need the Max week number of 2021 or current year***

 

powerbi2.JPG

 

I also have another table-circled in red below-where the annual goal is listed for each category. I then want to take my Projected Number and show it against the projected annual number to show % attained against goal.

 

powerbi3.JPG

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

Projected=VAR _maxdate=Max(sampledata[Dates]) VAR _total=CALCULATE(SUM(sampledata[Conversions]),DATESYTD(sampledata[Dates])) VAR _maxweek=CALCULATE(MAX(sampledata[WeekNumber]),sampledata[Dates]=_maxdate) REUTRN DIVIDE(_total,_maxweek)*52

View solution in original post

2 REPLIES 2
wdx223_Daniel
Super User
Super User

Projected=VAR _maxdate=Max(sampledata[Dates]) VAR _total=CALCULATE(SUM(sampledata[Conversions]),DATESYTD(sampledata[Dates])) VAR _maxweek=CALCULATE(MAX(sampledata[WeekNumber]),sampledata[Dates]=_maxdate) REUTRN DIVIDE(_total,_maxweek)*52

Anonymous
Not applicable

Thank you very much. I can see what you wrote is doing, but would have never figured that out. I had to fix "REUTRN", but that is irrelevant to what you provided.

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.

Top Solution Authors