Forum Discussion
spider_Monkey
3 years agoHelper I
Automatically Split One Table into Smaller Tables based on a row value (Name)
Hello, I am working with a dataset with 15mm+ rows, so needless to say I am running into issues while writing some formulas. I have found if I make the data set smaller the formulas work. S...
ppm1
3 years agoSolution Sage
Please try this column expression instead.
Previous Action =
VAR thisdate = 'Test'[Date]
RETURN
CALCULATE (
MAX ( 'Test'[Date] ),
ALLEXCEPT ( 'Test', 'Test'[ID] ),
'Test'[Date] < thisdate
)
Pat
spider_Monkey
3 years agoHelper I
Morning ppm1 ,
No luck it tells me not enough memory to complete the operation. I tried a version of that formula first and got the same error.
Is there anyway to write this in Mquery?