Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
prabhas277
Creator
Creator

convert weekday format

Hi Experts,

let currently we are in week number 20 the format should be "00" only.      if the week number is below "10" then u should be show like 2 digits.

For example now week number is 6 but i want like "06". and i want these change in front end textbox.

Please help me

Thanks In advance..

Regards,

Prabhas

3 Replies
sunny_talwar

Try this -> Num(Week, '00')

Anonymous
Not applicable

Num(YourExpression,'00')

Kind regards.

tamilarasu
Champion
Champion

Another solution could be,

Right('0' & Week ,2)