Forum Discussion
Anonymous
4 years agoNot applicable
Calculate function and direct
Hi all, I'm trying to recreate a report. Right now I've made it with imported data from SQL but the new report is set to use Direct Query. Previously I requested a solution for this issue: ht...
tamerj1
Community Champion
4 years agoAnonymous
Please try
Earleist Start =
MINX (
FILTER (
ALL ( 'Table2' ),
'Table2'[Timestamp Code] = "Start"
&& 'Table2'[Prod No] = SELECTEDVALUE ( 'Table2'[Prod No] )
),
'Table2'[Timestamp]
)Anonymous
4 years agoNot applicable
Hi tamerj1
The MINX function is not supported either.
Unfortunately I still seem to be stuck.
Thanks for your help!
- tamerj14 years ago
Community Champion
Anonymous
Please tryEarleist Start = SELECTCOLUMNS ( SUMMARIZE ( FILTER ( ALL ( 'Table2' ), 'Table2'[Timestamp Code] = "Start" && 'Table2'[Prod No] = SELECTEDVALUE ( 'Table2'[Prod No] ) ), 'Table2'[Prod No], "@TimeStamp", MIN ( 'Table2'[Timestamp] ) ), "@@TimeStamp", [@TimeStamp] )- Anonymous4 years agoNot applicable
It seems that a lot of functions won't work with Direct Query. SELECTCOLUMNS isn't working either.