Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Recurring Bookings = IF( ISFILTERED(Renewal[RENEW FLAG]) &&
SELECTEDVALUE(Renewal[RENEW FLAG]) = "NEW BUSINESS" &&
SELECTEDVALUE(BusinessMix[Bookings by Class]) IN {"License Support", "Hardware Support", "Subscription", "SAAS", "BCS", "Consumption"},
"True",
"False" )
This measure should return True when the following conditions are met: Renewal[RENEW FLAG] is filtered. The selected value of Renewal[RENEW FLAG] is "NEW BUSINESS". The selected value of BusinessMix[Bookings by Class] is all of the specified classes only if anything else is selected or no value is selected then it should return false
Solved! Go to Solution.
Hi @Maithilitiwari ,
your DAX seems perfect , could you plz ellaborate your issue??
I am getting true only when License Support is selected apart from that i am getting false there is a logical error
If you are getting "True" only when "License Support" is selected and "False" otherwise, the issue might be with how the values are being compared or how the SELECTEDVALUE function is operating within the filter context.
Could you please share sample dataset..
or else try this dax
Recurring Bookings =
VAR SelectedRenewFlag = SELECTEDVALUE(Renewal[RENEW FLAG])
VAR SelectedBookingClass = SELECTEDVALUE(BusinessMix[Bookings by Class])
VAR ValidClasses = {"License Support", "Hardware Support", "Subscription", "SAAS", "BCS", "Consumption"}
RETURN
IF(
ISFILTERED(Renewal[RENEW FLAG]) &&
SelectedRenewFlag = "NEW BUSINESS" &&
NOT ISBLANK(SelectedBookingClass) &&
SelectedBookingClass IN ValidClasses,
"True",
"False"
)
If there is any post helps, then please consider Accept it as the solution to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!
Where is your issue?
Proud to be a Super User!
I am getting true only when License Support is selected apart from that i am getting false
Check out the April 2026 Power BI update to learn about new features.
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.
| User | Count |
|---|---|
| 45 | |
| 38 | |
| 34 | |
| 21 | |
| 17 |
| User | Count |
|---|---|
| 66 | |
| 64 | |
| 31 | |
| 26 | |
| 26 |