I’m creating a “dashboard” of sorts to track beta users that have recently joined across multiple products. I’m using the following formula right now for a basic list of users:
If(Filter([Beta Users],CurrentValue.Created()>=Today()-7).Count()>0, BulletedList(Filter([Beta Users],CurrentValue.Created()>=Today()-7).Company),"")
What I’d like to do is list both the company name and the product name as a list, so it would look like this:
-
[Beta Users].Company
has joined the[Beta Users].Product
beta -
[Beta Users].Company
has joined the[Beta Users].Product
beta -
[Beta Users].Company
has joined the[Beta Users].Product
beta
Is this something that exists right now in the BulletedList functionality?