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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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

1 Solution

Accepted Solutions
tresesco
MVP
MVP

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

];

tresesco
MVP
MVP

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