Reply
RajK2
Helper II
Helper II
Partially syndicated - Outbound

SELECTED VALUE While unselect

Team

I have filter table = List[levels)

if list(levels) selected then the dax formula works if unselect filter then it showing as blank data

my question here is if filter applied then show filter data else show ALL.. what is DAX Formula ?

 

VAR _mod = SELECTEDVALUE('List'[Levels])


RETRUN CALCULATE(-SUM('Data'[amount])/1000000,
'GPS'[File] =_mod,
'GPS'[File2] ="CDS"
)

1 ACCEPTED SOLUTION
rajendraongole1
Super User
Super User

Syndicated - Outbound

Hi @RajK2  - you can modify your DAX to check if a selection exists in 'List'[Levels]. If a filter is applied, it should use the selected value

 

VAR _mod = SELECTEDVALUE('List'[Levels])

RETURN
CALCULATE(
-SUM('Data'[amount]) / 1000000,
'GPS'[File] = IF(ISBLANK(_mod), 'GPS'[File], _mod),
'GPS'[File2] = "CDS"
)

 

please check the above and hope it works.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





View solution in original post

2 REPLIES 2
Greg_Deckler
Super User
Super User

Syndicated - Outbound

@RajK2 Try:

VAR _mod = SELECTEDVALUE('List'[Levels])

VAR _result = 
  IF( _mod = BLANK(),
    CALCULATE(-SUM('Data'[amount])/1000000, 'GPS'[File2] ="CDS"),
    CALCULATE(-SUM('Data'[amount])/1000000, 'GPS'[File] =_mod, 'GPS'[File2] ="CDS" )
  )
RETURN
  _result


Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
Power BI Cookbook Third Edition (Color)

DAX is easy, CALCULATE makes DAX hard...
rajendraongole1
Super User
Super User

Syndicated - Outbound

Hi @RajK2  - you can modify your DAX to check if a selection exists in 'List'[Levels]. If a filter is applied, it should use the selected value

 

VAR _mod = SELECTEDVALUE('List'[Levels])

RETURN
CALCULATE(
-SUM('Data'[amount]) / 1000000,
'GPS'[File] = IF(ISBLANK(_mod), 'GPS'[File], _mod),
'GPS'[File2] = "CDS"
)

 

please check the above and hope it works.





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





avatar user

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

FebPBI_Carousel

Power BI Monthly Update - February 2025

Check out the February 2025 Power BI update to learn about new features.

Feb2025 NL Carousel

Fabric Community Update - February 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)