Archive for March, 2005

Counting letters in a string

Friday, March 4th, 2005

To determine the number of occurences of a particular letter in a
string - replace it with a empty character and compare the lenghts
of the original and modified strings.

To find the number of ‘g’s in A1…

=LEN(A1)-LEN(SUBSTITUTE(A1;”g”;”"))

Macro : Sorting sheets

Thursday, March 3rd, 2005

A simple macro for sorting sheets in a spreadsheet in ascending alphabetical order.

(more…)

Basic functions : SUBTOTAL

Wednesday, March 2nd, 2005

In SUBTOTAL function allows you to perform basic spreadsheet operations on the visible cells in AutoFilter mode.

(more…)