Hello @chaitanyaKumar,
You can create a new dictionary variable of type string, string and assign these values to it.
dict = New Dictionary(Of String,String)From{{“Jan”,“Q1”},{“Feb”,“Q1”},{“Mar”,“Q1”},{“Apr”,“Q2”},{“May”,“Q2”},{“Jun”,“Q2”},{“Jul”,“Q3”},{“Aug”,“Q3”},{“Sep”,“Q3”},{“Oct”,“Q4”},{“Nov”,“Q4”},{“Dec”,“Q4”}}
Then you can simply make use of this below expression to find out Quarter.
dict(MonthName(today.month,true))
Regards,
Bharat