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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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.