March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
hi guys imagine if i click week1 it will show data of last week of the previous month, please tell me to do that,
in this example below. the present data is week1=128.76 , but if i want to show is when i click w2 it will show 128.76
Hi @peoplehelpme ,
Please describe your requirements along with relevant test data.
Best Regards,
Adamk Kong
Hi @peoplehelpme ,
You need to create a date table and then establish a one-to-many relationship with your data table. Then create the following:
Date =
ADDCOLUMNS (
CALENDAR ( DATE ( 2023, 01, 01 ), DATE ( 2024, 12, 31 ) ),
"Year", YEAR ( [Date] ),
"Quarter", ROUNDUP ( MONTH ( [Date] ) / 3, 0 ),
"Month", MONTH ( [Date] ),
"Week", WEEKNUM ( [Date] ),
"Year-Qur",
YEAR ( [Date] ) & "Q"
& ROUNDUP ( MONTH ( [Date] ) / 3, 0 ),
"Year-Mon",
YEAR ( [Date] ) * 100
+ MONTH ( [Date] ),
"Year-Week",
YEAR ( [Date] ) * 100
+ WEEKNUM ( [Date], 2 ),
"Weekday", WEEKDAY ( [Date], 2 )
)
result_ =
VAR sel_year =
SELECTEDVALUE ( 'Date'[Year] )
VAR sel_mon =
SELECTEDVALUE ( 'Date'[Month] )
VAR sel_week =
SELECTEDVALUE ( 'Date'[Week] )
VAR sel_min =
CALCULATE (
MIN ( 'Table'[Date] ),
FILTER ( 'Date', sel_year && sel_mon && sel_week )
)
VAR sel_max =
CALCULATE (
MAX ( 'Table'[Date] ),
FILTER ( 'Date', sel_year && sel_mon && sel_week )
)
RETURN
CALCULATE (
SUM ( 'Table'[Value] ),
DATESBETWEEN ( 'Date'[Date], sel_min - 7, sel_min - 1 )
)
Best Regards,
Adamk Kong
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
what column i need to create relationship
sorry for unclear target, i string column too
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |