Hello!
I have a collection that stores environments and a dataverse table that we update with the environments we want to display in our app. I was filtering the collection based on a filter in our dataverse table (see original code below). This has been working for over a year with absolutely no changes and then yesterday it stopped working. It does not show an error, it just shows blank instead of the environment name. The 'Environment Name' column is a single text field. It will work with another column called 'Environment ID' which is also a single text field. Not sure why it stopped working all of a sudden.
Filter(
colAllEnvironmentsFriendly,
FriendlyName in Filter(
'Environment Profile',
'Environment Type' = "DEV"
).'Environment Name'
)
Any help would be greatly appreciated!