Hi sideshwari,
use start of the month and end of the month to achieve this one
Start Date
parseDateTime('01-' + 'Jan' + '-' + formatDateTime([%CurrentDateTime%], 'yyyy'), 'dd-MMM-yyyy')
End Date
addDays(addMonths(parseDateTime('01-Jan-' + formatDateTime([%CurrentDateTime%], 'yyyy'), 'dd-MMM-yyyy'), 1), -1)
Hi Sidheshwari,
Use the above expression but instead of giving current date and time pass your month string variable.
Hi Sidheshwari Devkar,
MonthText: 'Jan-2024'
Month: parseDateTime($MonthText, 'MMM-yyyy')
StartMonth: beginOfMonth($Month)
EndMonth: endOfMonth($Month)
Hope this helps.
Huy