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: 
rustyfishbones
Master II
Master II

Date Dimension Issue

Hi,

I have the following chart, and I want the date to display the first letter of the day of the date, so I want M,T,W,T,F etc......

I could create it in the script, but I want to create it as a calculated dimension. Can you help

2017-10-16_1543.png

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

May be using Dual function

Dual(Left(WeekDay(Date), 1), Date)

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

May be using Dual function

Dual(Left(WeekDay(Date), 1), Date)

rustyfishbones
Master II
Master II
Author

Thank You Sunny!