Hi, I would like to select some data field from the record in SharePoint list and show in Notify like
You have made a reservation at (time data from list) Please waiting and this is the formula that I try to write but it's not working.
Notify(
"You have made a reservation at" &&
LookUp(tbl_TimeReservation,empid=lb_empid,TimeReservation) &&
Please waiting,
NotificationType.Error
)
Do you have any suggestion?
Thank you.
Solved! Go to Solution.
Hi @infinitepp ,
Do you want to concat them?
Please try the '&' instead of '&&'.
Notify(
"You have made a reservation at" &
LookUp(tbl_TimeReservation,empid=lb_empid,TimeReservation) &
Please waiting,
NotificationType.Error
)
Best Regards,
Wearsky
Hi @infinitepp ,
Do you want to concat them?
Please try the '&' instead of '&&'.
Notify(
"You have made a reservation at" &
LookUp(tbl_TimeReservation,empid=lb_empid,TimeReservation) &
Please waiting,
NotificationType.Error
)
Best Regards,
Wearsky
omg! Thank you it work!