Thanks alot Bryan and Waren , It worked !
But another problem is I am getting delegation error on this code as well
If(
CountRows(
Filter(
'IT Helpdesk Comments',
LikesID=ThisItem.LikesID
)
)>1,
CountRows(
Filter(
'IT Helpdesk Comments',
LikesID=ThisItem.LikesID
)
)& "people likes this ",
CountRows(
Filter(
'IT Helpdesk Comments',
LikesID=ThisItem.LikesID
)
)=1,
CountRows(
Filter(
'IT Helpdesk Comments',
LikesID=ThisItem.LikesID
)
)& " person likes this ",
"Be the first to like this "
But I seem to be getting delegation error and I tried to make a work around by using the With on to my Filter to avoid it and so far this part of the code works.
With(
{
LFilter:
Filter(
'IT Helpdesk Comments',
LikesID = ThisItem.LikesID
)
},
If(
CountRows(LFilter)>1,
"people likes this "
)
)
The code above works till when I try to add another statement countrows statement where =1 then it gives me the error.

Thanks once again both of you
Arsal