Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am Using Qlik Sense SaaS
in one of my chart i use Now() function it showing server location UTC
but is there a way that shows user profile time not server time
if person is in UK UK time US US time ?
Hi @ChannaK
ConvertToLocalTime(Now(), GetUserAttr('userZoneinfo'))
should do the trick!
Please note: we recommend using Now(0) or Now(2) to avoid constant recalculations. Using Now() might have an impact when using analyzer capacity licenses.
Instead than using a fixed timezone, you need to get it dynamically with GetUserAttr('userZoneinfo'), as mentioned in my previous answer:
ConvertToLocalTime(Now(), GetUserAttr('userZoneinfo'))
Hi @ChannaK
ConvertToLocalTime(Now(), GetUserAttr('userZoneinfo'))
should do the trick!
Please note: we recommend using Now(0) or Now(2) to avoid constant recalculations. Using Now() might have an impact when using analyzer capacity licenses.
thank you very much for speed response
i am using some thing like this , this is fine
ConvertToLocalTime(now(), 'Berlin', False())
what happens if person see from UK or USA
Instead than using a fixed timezone, you need to get it dynamically with GetUserAttr('userZoneinfo'), as mentioned in my previous answer:
ConvertToLocalTime(Now(), GetUserAttr('userZoneinfo'))