Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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 ?