Forum Discussion
What's the DAX syntax equivalent to a sql windowing
Hi franck_axires ,
How is the fiddling going?
So if you use ALLSELECTED() from the slicer, (I created a new VAR to play with this, and not affect the rest of the code. However the way the Slicer works, it also filters all the dates in your table. So to solve that, I went back to Power Query and used your date column to create a new date table, which allows us to use it as a slicer, but not affect your original table. Works as expected. Try it!
I have to work on something else for awhile, but the one thing I want to research is keeping the new table current as you update your base table. I know there is a way to do it, just have to find it.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Hi Nathaniel_C
Thanks a lot for your input.
I'm fiddling all the way...😜
Power BI is throwing an error in the CONCATENATEX & COUNTROWS formulas saying it cannot compare a date format to a string.
I have Datetime data on both sides of the = or <= operators and MAX doesn't implicitly convert data to strings so I'm a bit puzzled.
But I'll keep digging and let you know how it all went...!
Thanks again and have fun on your upcoming project !
- franck_axires7 years agoFrequent Visitor
By the way, why do you concatenate ContainerIds in your first formula ?
- Nathaniel_C7 years ago
Community Champion
Go back into PQ and check your new table. You may have to change data type.
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel - Nathaniel_C7 years ago
Community Champion
"By the way, why do you concatenate ContainerIds in your first formula ?"
You said originally,
"I need to find all the ContainerIds with a StatusCode of SUBL up to a certain date. "
Is that not what you were looking to find?
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel - Nathaniel_C7 years ago
Community Champion
Hi franck_axires ,
Plug this in and apply to a card.
How many Status Code = CALCULATE(COUNTROWS(Positions),FILTER(Positions,Positions[PositionDate]=ALLSELECTED(PositionDate[Date])))Select 10/4/2018Are two codes on one date expected?If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel - franck_axires6 years agoFrequent Visitor
Hi Nathaniel,
Thanks again for the energy you put in solving this problem.
The solution you offered didn't work in the end.
The actual solution resorted to manipulating the filter context with a series of treatas statements.
I'll publish a blog post about it and link to it here.
Thanks again !