Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I Want to create a new KPI with the value of max date :
example :
So my KPI I want diplay value : 109
Thanks
there is an extra ) within the set analysis
=Sum({<[Date.autoCalendar.Date]={"$(=Max(Date.autoCalendar.Date))"}>}[Volume de commandes Année N])
try somehting like below expression in your kpi object
Sum( {<Date={"$(Max(Date))"}>} Sales)
this solution return 0
try this too
Sum( {<Date={"$(=Max(Date))"}>} Sales)
the same, resull is 0
did a quick and dirty tryout in one of my apps. this is the expression i used.
=Sum({<OrderDate={"$(=Max(OrderDate))"}>}LineSalesAmount)
similar to one i shared before
share the exact expression you used
I use this expression :
substitute the Date with your own date fields i see from original post column names is different
I use this expr now :
=Sum({<[Date.autoCalendar.Date]={"$(=Max(Date.autoCalendar.Date)))"}>}[Volume de commandes Année N])
but always the result is 0
there is an extra ) within the set analysis
=Sum({<[Date.autoCalendar.Date]={"$(=Max(Date.autoCalendar.Date))"}>}[Volume de commandes Année N])