- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

need help with DAX to hide rows
Hello professionals,
I need ideas with DAX to hide rows
I have a key measure called "Revenue" and a column column called "Name"
I am showing the in a table with few coulmns and key measures.
Now I need to hide few rows based on below logic
if Revenue <>0 or Name = Unsecured
any ideas would be appriciated. TIA
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @jaipal ,
Create a measure like below and use it as filter on your visual:-
_filter = if( [Revenue] <>0 || Max(table[Name]) = "Unsecured",1,0)
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

Hi @jaipal ,
Create a measure like below and use it as filter on your visual:-
_filter = if( [Revenue] <>0 || Max(table[Name]) = "Unsecured",1,0)
Thanks,
Samarth
Best Regards,
Samarth
If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Helpful resources
Subject | Author | Posted | |
---|---|---|---|
10-22-2024 04:49 PM | |||
09-16-2024 11:43 AM | |||
07-29-2024 06:33 PM | |||
10-11-2024 09:35 AM | |||
09-20-2024 02:32 AM |
User | Count |
---|---|
141 | |
115 | |
82 | |
63 | |
48 |