Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
Good afternoon,
Thank you very much for the help you give me here!
I have a graph that you place data manually, and in the power bi you graph it.
My need is to add a measure that is only useful for the month of April. How can I insert it?
Thank you,
Greetings.
Solved! Go to Solution.
Try something like this
Use the SELECTEDVALUE to get the cursor month name
If the month is april then return your measure value,
otherwise return a blank
Please click thumbs up because I have tried to help.
Then click accept solution if it works. Thank you,
Answer =
var cursor_month = SELECTEDVALUE(yourtable[monthname])
RETURN
IF(cursor_month = "April",
[yourmeasure],
BLANK()
)
Try this:
CALCULATE ( [your measure], KEEPFILTERS ( 'table'[mes] = "abril" ) )
Try something like this
Use the SELECTEDVALUE to get the cursor month name
If the month is april then return your measure value,
otherwise return a blank
Please click thumbs up because I have tried to help.
Then click accept solution if it works. Thank you,
Answer =
var cursor_month = SELECTEDVALUE(yourtable[monthname])
RETURN
IF(cursor_month = "April",
[yourmeasure],
BLANK()
)
Thanks a lot!. It worked for me to the touch!.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 20 | |
| 18 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 42 | |
| 30 | |
| 24 |