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 have made a example of what my data looks like in the screen shot below. what im trying to acomplish is get it so the corespoding remsales only show on there import date. for example the month of may should only show the rows i have highlighted and the rest in the coulmn should be blank. i have also included my dax that i was trying to get to work but was unable to do. any help is appreciated. thanks.
Solved! Go to Solution.
Hi @DustinD ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _select=SELECTEDVALUE('Table 2'[Date].[Month])
return
IF(
FORMAT(MAX('Table'[Month ImportDate]),"mmmm")=_select,1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @DustinD ,
Here are the steps you can follow:
1. Create measure.
Flag =
var _select=SELECTEDVALUE('Table 2'[Date].[Month])
return
IF(
FORMAT(MAX('Table'[Month ImportDate]),"mmmm")=_select,1,0)
2. Place [Flag]in Filters, set is=1, apply filter.
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 8 | |
| 6 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 10 | |
| 10 | |
| 8 | |
| 8 |