Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ali_hijazi
Partner - Master II
Partner - Master II

convert today to number

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?

I can walk on water when it freezes
7 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

This is the simplest:

=Num(Today() + 0.5)

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
sunny_talwar

You can use Num(Now())

jonathandienst
Partner - Champion III
Partner - Champion III

Or if you prefer:

=Num(Today() + Time#('12:00:00'))

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
sunny_talwar

for number, may be this:

Num(Today()) + 0.5

Anonymous
Not applicable

num(Today()) will remain same for the day..

num(now()) will be changing as time changes...

Kushal_Chawda

try,

=Today()+MakeTime(12,0,0)

ali_hijazi
Partner - Master II
Partner - Master II
Author

this is it cause actually I might want to see the number representation of today at 3:15 PM for example

I can walk on water when it freezes