Workflow help when selecting from a RG to display dynamic text

I have a workflow I’m trying to display a selected items text in a group, and I’m getting this error… dynamic data in text boxes must be printable as text, instead this is a list of locations.

When I use mapbox, passing in the lat and long I can navigate just fine. via the mapbox plugin like such:

Now when I follow that same pattern and all I want to do is display the selected latitude I can’t

the data type for “current location” is geographical address. but the error doesn’t mention that that’s a problem.

Please, I’ll take any help.

To convert the latitude to text, you could try set the data to display as “Arbitrary Text”, and then insert your condition “Current cell’s location’s city_location’s lattitude” inside it.

thanks for the quick reply, but It’s still throwing the error on the arbitrary text.

hover over your expression, and you probably just need the part that evaluates to a geographic address. Current Cell’s Location or Current Cells Location’s City_Location

If none of those are the right type, you will need to use a medium in between the steps to convert the result into a geographic address

The debugger displays the lat as the “data to be displayed” but nothing renders on the ui.

yea, it’s evaluating correctly… and you can see the “pink highlight” is where the data should be displayed.

What exactly is “Location Details”?

Are you sure you don’t need to insert a textbox, and then set the value as Location Details’s text for it to show up?

location details is simply a group and I’m using the work flow of element actions of “display data in group”

In that case, what is inside the group of location details, is it empty and what is the data source of location details?


it has all of the data i’d want to see.

look at the data on the right. that’s all being pulled. just nothing is displayed on the UI

If the data is correct, you are going to need something to display the data on the UI side, something like a text element. Have you set that up yet?

Bingo… yea, the data is there and I added the text so that it needed to reference the parent group’s lat in order for it to be displayed!

Thanks for the help!