Category: Logical

Jan8 date format

Format a date in shortest format possible indicating how many days have passed (Past date) If date1-date2 < 8 Sat, Fri, …If date1-date2 < 350...

Walking Columns

An easy way to scroll through set of data in a graphic way without graphs. A-pure-formula xlsx workbook. These were done using formulas, conditional formatting,...

Repeated Offset

I needed to have an offset of columns to be repeated every 12 months. This is part of a project, we needed to calculate the...

Return 12 values in one number

A technic I loved using, return list of items (up to 12 items now) in ONE number. Let us say you have list of 12...

Cells with additional spaces

Detect which cells has additional spaces added by mistake by user. =IF(AND(Left(F2, 2) = "No", LEN(F2) >2, "Space at end", "")...

VALUE() of LEFT()

I have been in a lot of situation needing to convert a number came out from a string into actual numbers. Sometimes N() worked, sometimes...