Monday
dear BP Community members.
i am learning Blueprism, i am trying to webbased application, i want to split MONTH name only from Date (format date is 07/15/2017), please guide how to get Month Name only from this date format and what will be use for expression.? thank you
Answered! Go to Answer.
Monday
Hi @Adnan3194
If you add a calculation stage to your process and include the following FormatDate("07/15/2017","MMM") this should output the value as "Jul". If you want the full month name then you just increase the number of Ms in the format e.g. FormatDate("12/15/2017","MMMMMMMM") will show "December"
Monday
Monday
Hi @Adnan3194
If you add a calculation stage to your process and include the following FormatDate("07/15/2017","MMM") this should output the value as "Jul". If you want the full month name then you just increase the number of Ms in the format e.g. FormatDate("12/15/2017","MMMMMMMM") will show "December"
Monday
but how to Get Only Month name from date expression? Mean if i get date (21 December 2024), Now i want just Month Name. how i will get only Month name?
Monday
Try this :
FormatDate(ToDate("21 December 2024"),"MMMMMMMM")
Monday
hi.. please guide how i get flags of these classes (Economy, First and Business Class) data will be pick from Item Data Collection [ITEM DATA.SERVICE CLASS]
how i will use expression that one will be mark one True and other mark false
Tuesday - last edited Tuesday
You should have just one input text data item something like [Service Class]
And then you can use the logic in multi choice criteria
Lower([Service Class])="economy class"
Lower([Service Class])= "business class"
Lower([Service Class])="first class"
You see what i mean ?
Wednesday - last edited Wednesday
thank you for your support