Hi,
I'vd got a table with a column called key that contains a single letter and then a number of any length.
Capture.JPG
I want to get the maximum number that exists in the table column, ignoring the letter prefix.
I've tried array formulas;
{=MAX(RIGHT(Table1[@Key],LEN(Table1[@Key])-1))} returns 1
{=MAX(RIGHT(Table1[Key],LEN(Table1[Key])-1))} returns 0
and non array formulas
=MAX(RIGHT(Table1[@Key],LEN(Table1[@Key])-1)) returns 1
=MAX(RIGHT(Table1[Key],LEN(Table1[Key])-1)) returns 1
I want it to return 6, as this is the maximum... 
Thanks
Dave
Bookmarks