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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

show associated date range for each variable

Hi, I have 3 ("customers") that have purchase data in different ranges of dates. I would like to have a list box that shows me the range of dates associated with the customer selected.

Similarly, I would like to check for min/max values (range) of product volume to ensure no negative values and to have a box that reports that info for all or each of the respective date ranges. In a sense, this would serve as error reporting for the input side.

Thanks in Advance.

1 Solution

Accepted Solutions
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Are you sure you want a listbox? I would normally do this with a Straight Table Chart with a dimension of Customer and two expressions, "max(date)" and "min(date)".

Or if you want to show the complete range for all selected customers, a textbox with the expression =min(date) & " " & max(date).

-Rob

View solution in original post

2 Replies
rwunderlich
Partner Ambassador/MVP
Partner Ambassador/MVP

Are you sure you want a listbox? I would normally do this with a Straight Table Chart with a dimension of Customer and two expressions, "max(date)" and "min(date)".

Or if you want to show the complete range for all selected customers, a textbox with the expression =min(date) & " " & max(date).

-Rob

Not applicable
Author

Rob,

Thanks, I ended up doing a straight table for this just as you suggested. Thank you for your reply.