Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
Dear All.
I have a card visualization that will show the status "Achieved" or "Not Achieved" depending on the Month filter selected by the user.
When the filter is selected, it displays the data correctly according to the month. But when there is no filter, it displays blank. How can I fix it so that if there is no filter selected, the card displays the value of the last month. (e.g. Sep 2020 for now)
Sample Table:
| Month | Value |
| Jan | Achieved |
| Feb | Not Achieved |
| Mar | Achieved |
| Apr | Achieved |
| May | Achieved |
| Jun | Achieved |
| Jul | Achieved |
| Aug | Not Achieved |
| Sep | Not Achieved |
Solved! Go to Solution.
Hi @Riddlemirror ,
Sorry for replying late. You can put the value field in the card visual and set it as the last value so that it will show the latest month value by default.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Riddlemirror ,
Sorry for replying late. You can put the value field in the card visual and set it as the last value so that it will show the latest month value by default.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
@Riddlemirror , try with help from 2 measures
measure =
var _max = format(today(),"MMM")
return
calculate(Max(Table[value]) , Table[Month] =+max)
final measure = if(isfiltered(Table[Month]),Max(Table[value]), [measure])
Hi.
Thank you for the reply.
It tells me there is a syntax error on this one:
😶
"The syntax for ')' is incorrect"
var _max = format(today(),"MMM")
return
calculate(Max(Table[value]) , Table[Month] =+max)
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 |
|---|---|
| 52 | |
| 38 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 67 | |
| 34 | |
| 32 | |
| 29 |