Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
have a small Q for your. need to do KPI, where need to be calculated how many invoices was issued below X days. all invoices below or same as X days are on target.
My data are only to parametrs A as date of order and B date of issue day.
thank you for you assistance
Create a day field in script
LOAD *,Date_of_isse - Date_of_order as Days
FROM Data.qvd(qvd);
Then you can create KPI using below expression
=Count({<Days ={"<30"}>} InvoiceNo)
Create a day field in script
LOAD *,Date_of_isse - Date_of_order as Days
FROM Data.qvd(qvd);
Then you can create KPI using below expression
=Count({<Days ={"<30"}>} InvoiceNo)
Hi
got this error
Which error?
pardon this one
Hi,
I had just given an example. You should use your actual data source instead of what I have used.
i did and also change column names to yours but still the same outcome
in data model view i can see data and i can also use it in analaysis screen
hi
found solution with only your formula.
=Count({<NetDays={"<=2"}>} InvoiceNo)
where i add one more column in excel with function NetWorkingDays
appriciate your help on this topic
Please mark the appropriate answer as correct So that others can refer for the same problem