Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hello everyone, i cant seem to understand the logic behind the filtering in matrix
i am adding a measure called weekcheck to filter out dates based on a number range paramater to go back x number of weeks compared to today's week
Week check =
VAR ReferenceDate =
CALCULATE(MAX( dimDate[StartOfWeek] ), REMOVEFILTERS(dimDate))
VAR NumDays =
SELECTEDVALUE ( Parameter[Parameter] ) * 7
RETURN
IF ( ( ReferenceDate - NumDays ) <= MAX(dimDate[StartOfWeek]), 1 )
if i do the matrix like this i get the results i need
however the way i want to display it is putting the startofweek in the column of the matrix not row
and as soon as i do this, the filter breaks and doesnt work
as you see i have way more data back from the start of my dataset?
why is this happening and how to fix it please
Solved! Go to Solution.
Hi @eliasayyy
Try creating a filtered measure instead
Filtered Measure =
VAR ReferenceDate =
CALCULATE ( MAX ( dimDate[StartOfWeek] ), REMOVEFILTERS ( dimDate ) )
VAR NumDays =
SELECTEDVALUE ( Parameter[Parameter] ) * 7
VAR StartDate = ReferenceDate - NumDays
RETURN
CALCULATE ( [your measure], KEEPFILTERS ( dimDate[StartOfWeek] >= StartDate ) )
Hi @eliasayyy ,
I would also take a moment to thank @danextian , for actively participating in the community forum and for the solutions you’ve been sharing in the community forum. Your contributions make a real difference.
I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions
Hi @eliasayyy ,
I hope the information provided above assists you in resolving the issue. If you have any additional questions or concerns, please do not hesitate to contact us. We are here to support you and will be happy to help with any further assistance you may need.
Hi @eliasayyy
Try creating a filtered measure instead
Filtered Measure =
VAR ReferenceDate =
CALCULATE ( MAX ( dimDate[StartOfWeek] ), REMOVEFILTERS ( dimDate ) )
VAR NumDays =
SELECTEDVALUE ( Parameter[Parameter] ) * 7
VAR StartDate = ReferenceDate - NumDays
RETURN
CALCULATE ( [your measure], KEEPFILTERS ( dimDate[StartOfWeek] >= StartDate ) )
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 55 | |
| 35 | |
| 31 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 75 | |
| 72 | |
| 38 | |
| 35 | |
| 25 |