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

One Value for all days of month

I have two tables connected to a calendar table. One has daily values ​​from the beginning and until the end of the month. Another table has a monthly target value, that is, that table only has one day per month. How do I return this value for every day on a chart? watch

 

In the goal table, there is only the 20th of each month, but I wanted to expand this value as if it were a monthly goal, you know?

 

Screenshot_3.png

 

Screenshot_2.png

1 ACCEPTED SOLUTION
daxer-almighty
Solution Sage
Solution Sage

[Monthly Goal Extended] =  
// YearMonthID must be something that uniquely
// identifies the month across the entire Calendar.
// It could, for instance, be the integer YYYYMM.
var __months = DISTINCT( 'Calendar'[YearMonthID] )
var __sumOfMonthlyTargets =
    calculate(
        sum( 'Monthly Targets'[Projected Amount] ),
        __months,
        removefilters( 'Calendar' )
    )
return
    __sumOfMonthlyTargets

View solution in original post

1 REPLY 1
daxer-almighty
Solution Sage
Solution Sage

[Monthly Goal Extended] =  
// YearMonthID must be something that uniquely
// identifies the month across the entire Calendar.
// It could, for instance, be the integer YYYYMM.
var __months = DISTINCT( 'Calendar'[YearMonthID] )
var __sumOfMonthlyTargets =
    calculate(
        sum( 'Monthly Targets'[Projected Amount] ),
        __months,
        removefilters( 'Calendar' )
    )
return
    __sumOfMonthlyTargets

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.