How to Compare Same Date Property which is in the Page List

Hi Folks, am Praveenkumar.R

My Requirement is,

There are multiple/different values (such as, Event Name, Event place, Event Date) in the Page List Property, an evaluator should pick up any of the two values. but that should not be in the same Event date.

To satisfy this requirement, what i have to do.

Thanks in advance.

this is my first discussion, if i made any mistakes,i apologies you.

@PraveenkumarR3390 Hi How are you selecting the date? is it something like you select a date in UI and you need to check if that date is already present in the pagelist ?if that is the case then you can use IsinPagelist function.

Hi @PraveenkumarR3390,

Please use following link to compare pagelist values.

Compare Pagelist

Hope this is helpful. Let me know if you need more help.

Thanks,

Pooja

@SrinidhiM Yes your guess right!..Thanks

@PraveenkumarR3390 Hi Then You can use the isinpagelist function as shown below:

@IsInPageList(Param.Date,“DateProperty”,PagelistProperty)

Here Param.Date you can use the date which you need to compare,

DateProperty is the property that is available in pagelist that you need to compare against

Pagelist Property is the pagelist which has results

@Pooja15295 Thanks.