Forum Discussion
SamTailor
9 years agoHelper I
Previous Transaction date DAX help
Please help me, how can I get Previous Transaction date in DAX? The data set is not that simple its is not sorted, has multimple customers with multile products, and resellers. Th...
- 9 years ago
Hey,
here is an example for a calculated column using variable instead of the EARLIER function
Previous transaction date = var currentDate = 'yourTableName[Transaction date] var currentCustomer = 'yourTableName'[Client]
var currentReseller = 'yourTableName'[Reseller]
var currentProduct = 'yourTableName'[Product] return CALCULATE(MAX('yourTableName'[Transaction date]), FILTER(ALL('yourTableName'), 'yourTableName[Date] < currentDate && 'FactWithDates'[Customer] = currentCustomer
&& 'yourTableName'[Reseller] = currentReseller
&& 'yourTableName'[Product] = currentProduct ) )- For each row the current values for Client, Reseller, and Product are stored in variables.
- CALCULATE is used to transform the existing ROWCONTEXT (we are creating a calculated column), into a FILTER CONTEXT
- The now existing FILTER CONTEXT has to be expanded, to gain access to all records using FILTER(ALL('yourTableName), ...
- The rows are filter down using the variables
- The MAX transaction date is calculated, from all Transactions date that are smaller than the date of the variable
Hope this helps
v-huizhn-msft
9 years agoMicrosoft Employee
Hi SamTailor,
Have you resolved your issue? If you have, please mark the right reply as answer. So more people will find the workaround easily.
Best Regards,
Angelia
SamTailor
9 years agoHelper I
The idea with VARs worked only for test data, once i tried to do it with 300 000 rows and 15 columns power BI crashed every ime i tried to do it, nnot enough memory(
- Tak946 years agoFrequent Visitor
I have the same problem. The VAR method does not work when working with large amounts of data.
Is there another way?