Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
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
Solved! Go to Solution.
@Anonymous:
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" )
)
)
@Anonymous:
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" )
)
)
Hi @Anonymous,
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
@Anonymous you can PM me and we could do a zoom to look together.
what do you meane about PM?
Private message*
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
26 | |
17 | |
12 | |
12 | |
10 |
User | Count |
---|---|
33 | |
25 | |
16 | |
14 | |
13 |