"How many rows in column A contain the word 'Denver'?"
Wildcards do the heavy lifting.
Playground Type what you need, Biscuit fetches it. Six real examples are sitting below if you want to watch him work first.
Six real requests, six working formulas. No hand waving.
"How many rows in column A contain the word 'Denver'?"
Wildcards do the heavy lifting.
"Give me a running total of column B starting from row 2"
The anchor is doing all the work.
"Get the price of a product from another sheet using its SKU"
Biscuit prefers INDEX/MATCH to VLOOKUP. It behaves better with column insertions.
"Extract the month name from a date in column A"
Works in Excel and Google Sheets.
"Clean up text: strip extra spaces, title case"
TRIM removes double spaces too, not just leading and trailing.
"Highlight cells in column C where the value is negative, in red"
Sub HighlightNegatives()
Dim c As Range
For Each c In Range("C:C").SpecialCells(xlCellTypeConstants, 1)
If IsNumeric(c.Value) And c.Value < 0 Then
c.Interior.Color = RGB(229, 73, 45)
End If
Next c
End Sub Run it once, or save it as a macro.
Five free formulas a day, on the house. Want more? A pack of 100 is $5 once, or $8/mo for the bottomless bowl. That's the whole menu.