Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Tripb44
Helper II
Helper II

Filter context for measure



I have a measure that I need to add some logic to which would write: If a quote has an order date then return blank.  How would I add that extra logic in to my below measure?  Thanks. 
(1.2) =
var _date = SELECTEDVALUE('Date'[Date])
var _avgquote = AVERAGEX(Cycletime,Cycletime[quote_total])
return
IF(HASONEVALUE(Cycletime[QuoteNum]),
_avgquote,
SUMX(filter(Cycletime,Cycletime[EntryDate]>_date),_avgquote))

1 ACCEPTED SOLUTION

@Tripb44 

Not sure how your model and the visual are  setup, can you try the following:

m =
VAR _date =
    SELECTEDVALUE ( 'Date'[Date] )
VAR __t =  FILTER ( Cycletime , Cycletime[Order Date]  = BLANK () )    
    
VAR _avgquote =
    AVERAGEX ( __t, Cycletime[quote_total] )
RETURN
    IF (
        HASONEVALUE ( Cycletime[QuoteNum] ),
        _avgquote,
        SUMX ( FILTER ( __t, Cycletime[EntryDate] > _date ), _avgquote )
    )
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

3 REPLIES 3
Fowmy
Super User
Super User

@Tripb44 

Can you try this measure ?

Measure = 
var _date = SELECTEDVALUE('Date'[Date])
var _avgquote = AVERAGEX(Cycletime,Cycletime[quote_total])
return
IF(
    NOT(ISBLANK (Cycletime[order date]) ) &&HASONEVALUE(Cycletime[QuoteNum]),
    _avgquote,
    SUMX(filter(Cycletime,Cycletime[EntryDate]>_date),_avgquote)
)
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

It is not allowing me to select OrderDate from the table for some reason? 

Tripb44_0-1635172160524.png

 

@Tripb44 

Not sure how your model and the visual are  setup, can you try the following:

m =
VAR _date =
    SELECTEDVALUE ( 'Date'[Date] )
VAR __t =  FILTER ( Cycletime , Cycletime[Order Date]  = BLANK () )    
    
VAR _avgquote =
    AVERAGEX ( __t, Cycletime[quote_total] )
RETURN
    IF (
        HASONEVALUE ( Cycletime[QuoteNum] ),
        _avgquote,
        SUMX ( FILTER ( __t, Cycletime[EntryDate] > _date ), _avgquote )
    )
Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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