Check If Array or Object
Automagic Insight 🪄 Power Automate Tip of the Day! Did you know? There’s a quick way to check if a value is an array or an object in Power Automate! 💡 By using a simple conditional expression, you can dynamically identify the data type in your flow. Just use this expression: if(startsWith(string(<value>), '['), 'Array', 'Object') This checks if <value> starts with a [ (indicating an array). Use it as is or in a condition. This small but powerful trick helps your flow handle different data types smoothly, making it adaptable and efficient—keeping things, well, automagically seamless! #powerautomate #automagicinsight #datatypes #smartflows