Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello all,
In below QVW I created a expression Min Date Where I need to show only if INVB<0 give me min date for current selection for particular item&Org
Some how my expression seems wrong Can some one help me putting these in to set analysis
attached samples
thanks,
D
Do you mind if its in the script:
Table:
LOAD
ITEM,
ORG,
Date( WKDT) as WKDT,
SPLY,
DMND,
INVBAL,
If(INVBAL<0,WKDT) as TempDate
FROM
Left Join (Table):
LOAD
ORG,
ITEM,
Min(TempDate) as MinDate
Resident
Table;
Group By
ITEM,ORG;
Drop Field TempDate;
try this
Min({<INVBAL= {"=$(=sum(INVBAL)<0"} >}WKDT)
Or
if(INVB<0,min(WKDT))
You cannot use the Expression Name directly in the set Analysis
Hello Aar,
it gave be Blanks results
What is your expected output?
Did you check my expression ? and don't create duplicate treads
Hello Nag,
My expected out put is I need min of date when that particular item turns in to negative group by ORG
I need min date for particular item for that particular org once the INVBAL start turning negative
in below case 7/3/17 is the date
example:
hey Avi,
your expression is correct if I am looking at whole dashboard but I need min(date) for every single item group by org I rephrased my question as
My expected out put is I need min of date when that particular item turns in to negative group by ORG
I need min date for particular item for that particular org once the INVBAL start turning negative
in below case 7/3/17 is the date
Check this attached?
Do you mind if its in the script:
Table:
LOAD
ITEM,
ORG,
Date( WKDT) as WKDT,
SPLY,
DMND,
INVBAL,
If(INVBAL<0,WKDT) as TempDate
FROM
Left Join (Table):
LOAD
ORG,
ITEM,
Min(TempDate) as MinDate
Resident
Table;
Group By
ITEM,ORG;
Drop Field TempDate;