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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

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
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.