Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
you know that in Qlik num(Today()) returns 42313 (if today is 11/5/2015)
How can I get the number representation of today at 12 PM?
This is the simplest:
=Num(Today() + 0.5)
You can use Num(Now())
Or if you prefer:
=Num(Today() + Time#('12:00:00'))
for number, may be this:
Num(Today()) + 0.5
num(Today()) will remain same for the day..
num(now()) will be changing as time changes...
try,
=Today()+MakeTime(12,0,0)
this is it cause actually I might want to see the number representation of today at 3:15 PM for example