Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
I have a text box that I want to show based on a condition but it is not working. Am i missing something???
IF(DATE(ReloadTime(), 'DD/MM/YYYY') = DATE(Today(), 'DD/MM/YYYY'), 0, 1)
For the warning icon i used =IF(Floor(ReloadTime()) < Today(2), 'qmem://<bundled>/BuiltIn/cross_r.png', '') and it works
Try this as your conditional hide/show expression:
=Floor(ReloadTime()) = Floor(Today(1))
No luck there Still not working
Have you checked in a text box object the value of the two things
=ReloadTime()
=Today()
are they both showing today's date or not?
Try this
= DATE(ReloadTime(), 'DD/MM/YYYY') = DATE(Today(), 'DD/MM/YYYY')
Refreshtime:
load
QvdCreateTime('$(vQVD_E_Directory)\YOURFACTTABLE.QVD') AS QVDTIME
AutoGenerate 1;
You can use above script to generate a field for your QVD refresh time. If that's what your goal is?
Then use this field in front end.
Layout / Show / Conditional not need to use the "If".
Just the condition to be shown.
The goal is to show text in a text box informing the user that the reload failed hence the conditional show. if the reload is successful nothing will be shown the text box will be hidden. the text box has red font on the dashboard which says, " Reload failed please contact XXXX"
Hi yes the dates are showing fine however The goal is to show text in a text box informing the user that the reload failed hence the conditional show. if the reload is successful nothing will be shown the text box will be hidden. the text box has red font on the dashboard which says, " Reload failed please contact XXXX"
The textbox will be hidden if Reloadtime() = Today()
The Textbox will show if reload time() is less than today. e.g. yesterday.
If they are the same and they need to be hidden, then you need this condition
=Floor(ReloadTime()) <> Floor(Today(1))