Forum Discussion
garzamalan
4 years agoNew Member
Max data point for each month
Hi, I have an issue that I can seem to resolve. So I have a DB that has the balance (saldo) up to a certain date (Fecha Corrida) (process that runs every sunday) per customer (numcliente) ...
- 4 years ago
Hi garzamalan ,
According to your description, I think there are some loopholes in your formula, the same client and the same month have not been not specified, and MAX function in a measure always return the current value, not the maximum value.
Here's my sample data, I modify the value of saldo column.
My solution is:
Cartera Hist = CALCULATE ( SUM ( CarteraSnapshots[saldo] ), 'CarteraSnapshots'[fecha_corrida] = MAXX ( FILTER ( ALLSELECTED ( CarteraSnapshots ), 'CarteraSnapshots'[Month] = MAX ( 'CarteraSnapshots'[Month] ) && 'CarteraSnapshots'[numclient] = MAX ( 'CarteraSnapshots'[numclient] ) ), 'CarteraSnapshots'[fecha_corrida] ) )Get the expected result.
I attach my sample below for reference.
Best Regards,
Community Support Team _ kalyjIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
elektrikticaret
1 year agoNew Member
I want to create a system that sets the maximum number of customers who place orders equal to 100 and scores the others at this rate. How do I write?
- Ashish_Mathur1 year agoSuper User
Hi,
This measure pattern should work
Measure = MAXX(ALL(Data[Customers]),[Total])
Measure1 = divide([Total],[Measure])
Format Measure1 as %.
Hope this helps.