Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am getting this error.
Invalid expression
Concatenate (BIOGraph)
Load UID,
'Baselined' as Category,
if( [BaselineSaveDate] > '1998/09/09' ,1,0) as value,
if( [BaselineSaveDate] > '1998/09/09',count(UID))/count(UID) as PercentValue
Resident ProjectTracker
what is the issue?
Thanks
Hi Amit, you are using count() without a Group by, try something like:
Concatenate (BIOGraph)
Load UID,
'Baselined' as Category,
if( [BaselineSaveDate] > '1998/09/09' ,1,0) as value,
if( [BaselineSaveDate] > '1998/09/09',count(UID))/count(UID) as PercentValue
Resident ProjectTracker
Group by UID, [BaselineSaveDate];
Hi Amit, you are using count() without a Group by, try something like:
Concatenate (BIOGraph)
Load UID,
'Baselined' as Category,
if( [BaselineSaveDate] > '1998/09/09' ,1,0) as value,
if( [BaselineSaveDate] > '1998/09/09',count(UID))/count(UID) as PercentValue
Resident ProjectTracker
Group by UID, [BaselineSaveDate];
Hi Ruben,
Thanks a lot.