Dear All,
I worked a solution but I am sure Excel formula gurus and get better solution then me.
Start from cell B10
<TABLE style="WIDTH: 48pt; BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=0 width=64><COLGROUP><COL style="WIDTH: 48pt" width=64><TBODY><TR style="HEIGHT: 12.75pt" height=17><TD style="BORDER-BOTTOM: #f0f0f0; BORDER-LEFT: #f0f0f0; BACKGROUND-COLOR: transparent; WIDTH: 48pt; HEIGHT: 12.75pt; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #f0f0f0" height=17 width=64>3456 Sales</TD></TR><TR style="HEIGHT: 12.75pt" height=17><TD style="BORDER-BOTTOM: #f0f0f0; BORDER-LEFT: #f0f0f0; BACKGROUND-COLOR: transparent; HEIGHT: 12.75pt; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #f0f0f0" height=17>12 Cars</TD></TR><TR style="HEIGHT: 12.75pt" height=17><TD style="BORDER-BOTTOM: #f0f0f0; BORDER-LEFT: #f0f0f0; BACKGROUND-COLOR: transparent; HEIGHT: 12.75pt; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #f0f0f0" height=17>rtsysy</TD></TR></TBODY></TABLE>
Formula in Cell A10 I used formula below
Solution A10 and down would be
the only solution 12 in cell A12 and the first word is two digit numbers and others are not so blanks " "
Kind Regards
Biz
I worked a solution but I am sure Excel formula gurus and get better solution then me.
Start from cell B10
<TABLE style="WIDTH: 48pt; BORDER-COLLAPSE: collapse" border=0 cellSpacing=0 cellPadding=0 width=64><COLGROUP><COL style="WIDTH: 48pt" width=64><TBODY><TR style="HEIGHT: 12.75pt" height=17><TD style="BORDER-BOTTOM: #f0f0f0; BORDER-LEFT: #f0f0f0; BACKGROUND-COLOR: transparent; WIDTH: 48pt; HEIGHT: 12.75pt; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #f0f0f0" height=17 width=64>3456 Sales</TD></TR><TR style="HEIGHT: 12.75pt" height=17><TD style="BORDER-BOTTOM: #f0f0f0; BORDER-LEFT: #f0f0f0; BACKGROUND-COLOR: transparent; HEIGHT: 12.75pt; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #f0f0f0" height=17>12 Cars</TD></TR><TR style="HEIGHT: 12.75pt" height=17><TD style="BORDER-BOTTOM: #f0f0f0; BORDER-LEFT: #f0f0f0; BACKGROUND-COLOR: transparent; HEIGHT: 12.75pt; BORDER-TOP: #f0f0f0; BORDER-RIGHT: #f0f0f0" height=17>rtsysy</TD></TR></TBODY></TABLE>
Formula in Cell A10 I used formula below
Code:
=IF(ISNUMBER(IF(ISERROR(FIND(" ",B10)),B10,LEFT(B10,FIND(" ",B10)-1)+0)),IF(OR(IF(ISERROR(FIND(" ",B10)),B10,LEFT(B10,FIND(" ",B10)-1)+0)=30,IF(ISERROR(FIND(" ",B10)),B10,LEFT(B10,FIND(" ",B10)-1)+0)=34),"Combined 30 & 34",IF(LEN(IF(ISERROR(FIND(" ",B10)),B10,LEFT(B10,FIND(" ",B10)-1))+0)=2,IF(ISERROR(FIND(" ",B10)),B10,LEFT(B10,FIND(" ",B10)-1)+0),"")),"")
Solution A10 and down would be
the only solution 12 in cell A12 and the first word is two digit numbers and others are not so blanks " "
Kind Regards
Biz