Hi Mayank, I don’t think the weekday()
function works for that as it expects a date
This formula should serve your needs, and you can modify the numbers as needed depending on when your week starts:
SWITCH(
Name,
'Sunday', 0,
'Monday', 1,
'Tuesday', 2,
'Wednesday', 3,
'Thursday', 4,
'Friday', 5,
'Saturday', 6
)

Hi Mayank, I don’t think the weekday()
function works for that as it expects a date
This formula should serve your needs, and you can modify the numbers as needed depending on when your week starts:
SWITCH(
Name,
'Sunday', 0,
'Monday', 1,
'Tuesday', 2,
'Wednesday', 3,
'Thursday', 4,
'Friday', 5,
'Saturday', 6
)

Thank you so much Adam!
Particularly thanks for taking the pain to write the entire function for me when you could’ve simply guided me :grinning_face_with_big_eyes:
Sincerely appreciate your effort. I will start using this.