Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Can some one help me to get the desired output.
when i select particular week. i should get the count of that week numbers and less than that week number. below is data Week_no is input data & output column is expected output.
@Maddineni_S Many solutions
for example in script :
DATA: LOAD * INLINE [ Week_no 1 1 2 3 4 5 5 6 7 8 9 10 10 ]; output: noconcatenate load Week_no,RangeSum(1,Peek(output)) as output resident DATA order by Week_no; drop table DATA;
and then in interface
dimension: Week_no
measure : =Max(output)
output: