Reputation: 455
First time Qlikview user here. Trying to get x-axis only showing the date from the timestamp. Here is the example,
It would be lovely to be able to remove the time. Does anybody know how to do this? I tried some simple script in the Used Dimension section under Dimension tab hoping to get only the date. It didn't work. It looked like this:
=date(floor(timestamp#(SomeDate,'MM/DD/YYYY hh:mm:ss'))) as record_date
Please help!
Upvotes: 1
Views: 3738
Reputation: 26
If you need to remove time than you rather use Date#
function instead of timestamp#
?
Below one is the sample one:-
Date#( DateField, 'M/D/YY')
Upvotes: 1