Hi,
i got two buttons. Each runs a flow (Flows are similar) (I made a faster variant). Both answer with a response action to Power Apps.
Problem:
With one flow, i collect the correct table. With the other (newer & faster) one, i just receive a "true" value. I just can't see why, because both are ident. In the following i demonstrate VariantA (As the older one) and VariantB (As the newer one):
VariantA Button onSelect command:
ClearCollect(
colArtikel,
Validierung.Run("/CADMAN Sheets/" & ComboboxCanvas1.Selected.'Dateiname mit Erweiterung')
)
VariantB Button onSelect command:
ClearCollect(
colArtikelkoordinaten,
Validieren.Run("/CADMAN Sheets/" & ComboboxCanvas1.Selected.'Dateiname mit Erweiterung')
)
--> They just differ in the name of the collection and in the flow
--> I used the same data input with both flows:
VariantA response action INPUT:
Same as VariantB, just wanna save some space
VariantB response action INPUT:
Same as VariantA, just wanna save some space
VariantA response action OUTPUT:
Same as VariantB, just wanna save some space
VariantB response action OUTPUT:
Same as VariantA, just wanna save some space
Result VariantA:

Result VariantB:

Why am i receiving a boolean value?
Anyone got experience with this?