Hi @SumanthDundi7
Ok, so your date input value is
DateAdd(Today(),1-Weekday(Today(),StartOfWeek.Monday)+7,Days)
So your final expression is
Text(DateAdd(Today(),1-Weekday(Today(),StartOfWeek.Monday)+7,Days), "mmmm dd,yyyy")
Remember that as soon as you display a date in a text control like a label, it gets typed to text anyway. The data itself might be a date type, but to display, it will get retyped to Text. This shouldn't affect your app as you shouldn't necessarily be using the text label as your date source. If you are, then you'll have to type it back using DateValue() - but for display purposes, the above example should suit your needs.
Kind regards,
Russel