Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

File Arrival Status

Hi,

I would like to show the file arrival status in my dashboard.

Let me explain in detail,  I have 7 text boxes for weekdays (Sun, Mon,Tue…) and week dimension (53 weeks).

I want to show the status based on the week selection. I will choose only one week (I don't want to select the date).  I would like to show the difference in text box’s background color, means that

    

Green color – File has been arrived on time

Orange color – File has been arrived with delay

Red color – File hasn’t been arrived for that day

3 Replies
tresesco
MVP
MVP

What is the table structure you have? Could you post sample data?

Not applicable
Author

Hi,

My Table has the following colums (I have other columns also in the same table).

WeekWeekdayDateFile Arrival
  Status
2333-Jun-14On Time
2344-Jun-14Delay
2355-Jun-14On Time
2366-Jun-14On Time
2377-Jun-14Not Arrived
2418-Jun-14On Time
2429-Jun-14Not Arrived
24310-Jun-14On Time
24411-Jun-14On Time
24512-Jun-14Delay
24613-Jun-14On Time
24714-Jun-14On Time
tresesco
MVP
MVP

If you select a week - would you consider the latest date status as the week status? If so, try like:

=If(FirstSortedValue( Status, -Date) = 'On Time', green(), If(FirstSortedValue( Status, -Date) = 'Delay', RGB(250,140,100), Red()))