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

How to show the filedate in the text at top when selecting specific product.

Hi All ,

How to show the filedate in the text at top when selecting specific product.

Capture.PNG

But when we are not selecting the product code . the filedate are showing.

Capture1.PNG

sample model attached.

1 Solution

Accepted Solutions
tresesco
MVP
MVP

Try removing the $ expansion like:

= 'Aspen Data Refresh: ' & TimeStamp(vAspenDist,'YYYY-MM-DD HH:MM          ') &

'IHS Data Refresh: ' & TimeStamp(vIHS,'YYYY-MM-DD HH:MM                    ') &

'PIN Data Refresh: ' & TimeStamp(vPIN,'YYYY-MM-DD HH:MM                    ') &

'NRP Data Refresh: ' & TimeStamp(vNRP,'YYYY-MM-DD HH:MM                    ') &

'SCS Data Refresh: ' & TimeStamp(vSCS,'YYYY-MM-DD HH:MM                    ') &

'ULG Data Refresh: ' & TimeStamp(vULG,'YYYY-MM-DD HH:MM                    ') &

'UPD Data Refresh: ' & TimeStamp(vUPD,'YYYY-MM-DD HH:MM')

View solution in original post

3 Replies
tresesco
MVP
MVP

Try removing the $ expansion like:

= 'Aspen Data Refresh: ' & TimeStamp(vAspenDist,'YYYY-MM-DD HH:MM          ') &

'IHS Data Refresh: ' & TimeStamp(vIHS,'YYYY-MM-DD HH:MM                    ') &

'PIN Data Refresh: ' & TimeStamp(vPIN,'YYYY-MM-DD HH:MM                    ') &

'NRP Data Refresh: ' & TimeStamp(vNRP,'YYYY-MM-DD HH:MM                    ') &

'SCS Data Refresh: ' & TimeStamp(vSCS,'YYYY-MM-DD HH:MM                    ') &

'ULG Data Refresh: ' & TimeStamp(vULG,'YYYY-MM-DD HH:MM                    ') &

'UPD Data Refresh: ' & TimeStamp(vUPD,'YYYY-MM-DD HH:MM')

sunny_talwar

Not sure if above is what you want, but also make sure to use hh:mm vs HH:MM because capital M (MM) is used for months and lower case m (mm) is used for minutes.

Anonymous
Not applicable

Try Below one, it is working

= 'Aspen Data Refresh: ' & TimeStamp((vAspenDist),'YYYY-MM-DD HH:MM           ') &

'IHS Data Refresh: ' & TimeStamp((vIHS),'YYYY-MM-DD HH:MM                    ') &

'PIN Data Refresh: ' & TimeStamp((vPIN),'YYYY-MM-DD HH:MM                    ') &

'NRP Data Refresh: ' & TimeStamp((vNRP),'YYYY-MM-DD HH:MM                    ') &

'SCS Data Refresh: ' & TimeStamp((vSCS),'YYYY-MM-DD HH:MM                     ') &

'ULG Data Refresh: ' & TimeStamp((vULG),'YYYY-MM-DD HH:MM                    ') &

'UPD Data Refresh: ' & TimeStamp((vUPD),'YYYY-MM-DD HH:MM')