Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
deepakqlikview_123
Specialist
Specialist

showing same date value in single row

PFA

I need to show same date value infrom of each other for date

01-01-2015

values should be like  2,3,4,5 in single row

Thanks

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

5 Replies
MK_QSL
MVP
MVP

AutoNumber(Date) as Value1

or

something like this?

Load

  *,

  AutoNumber(Date&RowNo()) as Value1

Inline

[

Date

01-01-2015

01-01-2015

01-01-2015

01-01-2015

01-02-2015

01-02-2015

01-02-2015

];

tresB
Champion III
Champion III

Like this?

deepakqlikview_123
Specialist
Specialist
Author

Hi manish

i need to show values in a one row

like 1,2,3,4 for date 01-01-2015 that is all values in single row for single date

Thanks

jsingh71
Partner - Specialist
Partner - Specialist

Use this in expression :

Concat(Value,',')

deepakqlikview_123
Specialist
Specialist
Author

thanks tresesco