Posts

Tipping for Takeaways: A Counter-Intuitive Trend in a Customer-Focused Era

Image
My Uber Eats Wake-Up Call I recently had a jarring experience that highlighted a new and uncomfortable trend in the food service industry. I ordered breakfast via Uber Eats and, which is common in this case, I was prompted to add a tip at the time of ordering – before the food was even prepared or delivered. Wanting to be generous, I preemptively added a 15% tip to the order. Unfortunately, when my breakfast arrived, I discovered that during transit, half of my coffee had spilled so I was provided with a half-filled cup. The delivery itself was a flop, yet the driver had already pocketed a tip for service that turned out to be subpar. Sure, I could theoretically go through the hassle of reversing or adjusting the tip after the fact, but the process to cancel it is cumbersome . In frustration, I found myself thinking: Did that delivery really deserve a tip? Probably not. The whole ordeal left such a bad taste that I swore off using that delivery service for a while. This incid...

Power Automate OData Filter Query 101: Filtering SharePoint Columns for Beginners

Image
When building Power Automate flows with SharePoint, you often need to get list items or files that meet specific conditions – for example, “all completed tasks created after Jan 1”. Instead of retrieving all items and then filtering in the flow (which is slow and inefficient), you can use the OData Filter Query option on the Get items (or Get files (properties only) ) action. This filter query allows you to retrieve only the items you need by specifying conditions, leveraging SharePoint’s query engine for faster results [ sharepains.com teamdynamix.umich.edu ] . In this beginner-friendly guide, we’ll explain what OData filter queries are, why they’re useful, and provide examples for filtering various SharePoint column types . We’ll cover Yes/No, Date, Currency, Lookup, Choice (single and multi-select), Person (single and multi-select), Hyperlink, and Managed Metadata columns. For each, we’ll describe the SharePoint column setup, show the Filter Query syntax to use in Power Automa...