Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I
I Have Date Table that has relation ship with other sales data table
I want when I press July the data from Jan until July appear
so for example in the image when I press July, the closingendcatered column will include data from Jan until July
pbix file:
https://www.dropbox.com/s/upz9cbtsvfc48b9/demo.pbix?dl=0
Solved! Go to Solution.
Hi @myou ,
Firstly, we should make the relationship between fact table and date table inactive. Atfer that, to create a measure as below and add it to the table visual.
Measure =
VAR maxdate =
SELECTEDVALUE ( Dates[Date] )
RETURN
IF ( MAX ( Table1[closingENDcatered2020] ) <= maxdate, 1, BLANK () )
Hi @myou ,
Firstly, we should make the relationship between fact table and date table inactive. Atfer that, to create a measure as below and add it to the table visual.
Measure =
VAR maxdate =
SELECTEDVALUE ( Dates[Date] )
RETURN
IF ( MAX ( Table1[closingENDcatered2020] ) <= maxdate, 1, BLANK () )
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 93 | |
| 70 | |
| 50 | |
| 40 | |
| 39 |