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
JRe5777
Advocate I
Advocate I

Using Column Chart results for a measure

Hello everybody, 

I dont know if this is possible but let me know what you think.

 

So I have a column chart where the X axis is column A of my table and Y axis is a measure using other tables values.

(the measure is to calculate an average of values for either F, M or the global average)

Measure = 
VAR s = SELECTEDVALUE ( Table1[ColumnA] )
VAR currentDate =
    MAX ( 'Datas'[Date] )
RETURN
    IF (
        s = "Global",
        CALCULATE (
            SUM(Table2[Value]),
            Table2[Start_Date] <= currentDate,
            OR(ISBLANK(Table2[End_Date]),
            Table2[End_Date] > currentDate))/COUNT(Table3[Employee ID]),
        CALCULATE (
            SUM(Table2[Value]),
            Table2[Start_Date] <= currentDate,
            OR(ISBLANK(Table2[End_Date]),
            Table2[End_Date] > currentDate),Table3[F/M] = s)
        /COUNT(Table3[Employee ID])
    )

 

So there are 3 values in the column A, and so my column chart has 3 columns.

image.png
Is it possible to have M/F ? I want a single value with the operation of (in this case) 1265/1812

 

Can we do this?

1 ACCEPTED SOLUTION

Nevermind, I was complicating to much.

I just have to adjust my measure (which is calculating an average) so that both numerator and denominator have the same filter condition.

Then I add another measure which will divide one average per another, as my goal was to have the ratio between the 2 measures.

 

Maybe its a bit specific for me and it won't help anyone so I will mark my answer as the solution.

 

Thanks anyway.

View solution in original post

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

@JRe5777 ,

 

I'm really confuesd on your requirement. Could you please share some sample data and elaborate more on your requirement?

 

Regards,

Jimmy Tao

Nevermind, I was complicating to much.

I just have to adjust my measure (which is calculating an average) so that both numerator and denominator have the same filter condition.

Then I add another measure which will divide one average per another, as my goal was to have the ratio between the 2 measures.

 

Maybe its a bit specific for me and it won't help anyone so I will mark my answer as the solution.

 

Thanks anyway.

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.

Top Solution Authors