cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
TarifAlanazi
Helper II
Helper II

Matrix total

Greetings supporter,

 

I have two values when i put on the total first value calculated by column that is right, and Second value by Row that is wrong as the below total. how to make both value calculate by columns 

 

your supprot is highlty appreciated

 

 

 

1 ACCEPTED SOLUTION
SpartaBI
Community Champion
Community Champion

@TarifAlanazi
Create a date dimension table and use the columns from that table in your visual instead of the date columns from the fact table.
You can use this code for the calculated table:

 

Date = 
GENERATE (
    CALENDARAUTO (),
    VAR Yr = YEAR ( [Date] )
    VAR Mn = MONTH ( [Date] )
    VAR Qr = QUARTER ( [Date] )
    VAR MnQ = Mn - 3 * (Qr - 1)
    VAR Wd = WEEKDAY ( [Date], 2 )
    RETURN ROW (
        "Year", Yr,
        "Year Quarter", FORMAT ( [Date], "\QQ-YYYY" ),
        "Year Quarter Sorting", Yr * 100 + Qr,
        "Quarter", FORMAT ( [Date], "\QQ" ),
        "Year Month", FORMAT ( [Date], "MMM-YYYY" ),
        "Year Month Sorting", Yr * 100 + Mn,
        "Month", Mn,
        "Day of Week", Wd,
        "Week Day", FORMAT ( [Date], "dddd" )
    )
)

 




2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

View solution in original post

5 REPLIES 5
SpartaBI
Community Champion
Community Champion

@TarifAlanazi
Create a date dimension table and use the columns from that table in your visual instead of the date columns from the fact table.
You can use this code for the calculated table:

 

Date = 
GENERATE (
    CALENDARAUTO (),
    VAR Yr = YEAR ( [Date] )
    VAR Mn = MONTH ( [Date] )
    VAR Qr = QUARTER ( [Date] )
    VAR MnQ = Mn - 3 * (Qr - 1)
    VAR Wd = WEEKDAY ( [Date], 2 )
    RETURN ROW (
        "Year", Yr,
        "Year Quarter", FORMAT ( [Date], "\QQ-YYYY" ),
        "Year Quarter Sorting", Yr * 100 + Qr,
        "Quarter", FORMAT ( [Date], "\QQ" ),
        "Year Month", FORMAT ( [Date], "MMM-YYYY" ),
        "Year Month Sorting", Yr * 100 + Mn,
        "Month", Mn,
        "Day of Week", Wd,
        "Week Day", FORMAT ( [Date], "dddd" )
    )
)

 




2022-05-19 17_30_22-Re_ Need help on DAX function with measure vs colu... - Microsoft Power BI Commu.png


Full-Logo11.png

SpartaBI_3-1652115470761.png   SpartaBI_1-1652115142093.png   SpartaBI_2-1652115154505.png

Showcase Report – Contoso By SpartaBI

v-shex-msft
Community Support
Community Support

Hi @TarifAlanazi,

You can take a look at the following link about Dax measure total calculation issue if helps:

Measure Totals, The Final Word 

Regards,

Xiaoxin Sheng

Community Support Team _ Xiaoxin
If this post helps, please consider accept as solution to help other members find it more quickly.
SpartaBI
Community Champion
Community Champion

@TarifAlanazi you can PM me and we could do a zoom to look together.

what do you meane about PM?

Private message*

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

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

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors