0 How to get Membership in a specific Group for a person using in the Id? 1 Knolly Shadrache posted 6 Years Ago Hi,I'm probably making a simple error, but I cannot seem to get a basic lava query to work in lava tester or lava template:Hard coding the Id in a group member query works ok:{% assign gm = person | Group:"3933" | First %}But I need to use row.GroupId as I'm building a dynamic report with a lava template. It fails to return anything if I substitute the GroupId with a lava value:{% assign gid = row.GroupId | Property:'Id' %}{% assign gm = person | Group:'{{gid}}' | First %} ---> nothing returned{% assign gm = person | Group:'"{gid}}"' | First %} ---> nothing returnedDoes anyone know the correct this at all? the docs don't seem to cover it and I've been at it for hours.Hope someone can rescue me please....Thanks
Knolly Shadrache 6 years ago Thanks!! I had encountered the int32 string conversion error and wasn't aware of the bug in the filter, glad to know now.I just tried the following in Lava Tester based on your pointer and had success!!:{% assign gid = Group.Id | ToString %}{% assign gm = Person | Group:gid %}{{ gm }}Thank you ever so muchly!!