October 28 & 29: Experts share their secrets on how to pass the Fabric Analytics Engineer certification exam—live. Learn more
Hi,
I have this measure
measure=
VAR dates =
MAX('Posting Date'[Date] )
Return
CALCULATE(
COUNTROWS( 'Job' ),
Filter('Duration Entry' ,
'Duration Entry'[Start DateTime Local] <= dates + 21 / 24
&& 'Duration Entry'[End DateTime Local] ='Duration Entry'[Start DateTime Local]
&& 'Duration Entry'[Entry Number] = MAX( 'Duration Entry'[Entry Number])
&& 'Duration Entry'[Parts Available Not Booked Flag] = 1
)
)
it returns Blank in the total, but when I remove this part :
Hi @Anonymous ,
Based on your desccriptions, it seems that you have used three table to create this measure. So what's the relationship between these tables?
Do you mean "&& 'Duration Entry'[Entry Number] = SelectedValue( 'Duration Entry'[Entry Number])" in the following formula?
The information you have provided is not making the problem clear to me. Could you please share some sample data (sample Excel file or screenshot as well) and the expected result to have a clear understanding of your question? I can do some tests for you.
You can save your files in some cloud sharing platforms and share the link here.
How to provide sample data in the Power BI Forum - Microsoft Power BI Community
Best Regards,
Yuna
What do you get in the total row if you put in this measure?
Max Entry Number = MAX ( 'Duration Entry'[Entry Number] )
@Anonymous
I'm wondering if it is a context problem, try adding a CALCULATE around the MAX( 'Duration Entry'[Entry Number]) )
measure =
VAR dates =
MAX ( 'Posting Date'[Date] )
RETURN
CALCULATE (
COUNTROWS ( 'Job' ),
FILTER (
'Duration Entry',
'Duration Entry'[Start DateTime Local] <= dates + 21 / 24
&& 'Duration Entry'[End DateTime Local] = 'Duration Entry'[Start DateTime Local]
&& 'Duration Entry'[Entry Number] = CALCULATE ( MAX ( 'Duration Entry'[Entry Number] ) )
&& 'Duration Entry'[Parts Available Not Booked Flag] = 1
)
)
Hi @jdbuchanan71 ,
I tried it but it is not working, it acts as that filter is not there.
it did not, I hav created calculated column to indicated if it is a max date and then use this flag.
User | Count |
---|---|
104 | |
97 | |
96 | |
85 | |
49 |
User | Count |
---|---|
162 | |
142 | |
132 | |
102 | |
63 |