Forum Discussion
Target Value KPI Targets
I can't help you without further information can you please show some data or the way you calculate the Measure?
Measure:= SUMX(RELATEDTABLE(F_Inventory),F_Inventory[M2])
/
(CALCULATE(
IF(
COUNT(D_Date[DATE_Date])>=30,
SUM(F_Invoice[M2])
),
FILTER(
ALL(D_Date),
D_Date[DATE_Date]>(MAX(D_Date[DATE_Date])-30)
&& D_Date[DATE_Date]<=MAX(D_Date[DATE_Date])
)
)/30)
- MFelix9 years agoSuper User
With only the formula of this meaasure and not knowing what each value represents I can't do a lot but I notice that in the IF you do a Count of the DATE why are you using a count and not the actual date itself?