Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
jerryr125
Creator III
Creator III

Date format in formula

Hi - 

I have the following statement :

=if( IsNull(GetFieldSelections(DATE)),' ',[DATE.autoCalendar.Date] )

When the selection is not null, it displays the date as a number.  How do I modify the formula above to display the date as WWW - MMM/DD/YYYY  ??

 

Thanks - jerry

2 Replies
imrasyed
Partner - Creator II
Partner - Creator II

Try something like this 

 

=week(today()) & ' - ' & Date(Today(),'MMM/DD/YYYY')

 

 

jerryr125
Creator III
Creator III
Author

If this is the formula - what do I add  to get the date to change to DDD - MMM/DD/YYYY ???

 

=if( IsNull(GetFieldSelections(DATE)),' ',[DATE.autoCalendar.Date] )

 

thoughts ?