Hey,
I have this in one cell:
<table bgcolor="#ffffff" border="1" cellspacing="0"><caption>
</caption> <thead> <tr> <th bgcolor="#c0c0c0">1013/1392</th> </tr> </thead> <tbody> </tbody> <tfoot></tfoot> </table>
and in another cell i want this to return:
<table bgcolor="#ffffff" border="1" cellspacing="0"><caption>
</caption> <thead> </thead> <tbody> <tr valign="TOP"> <td>1916 Requests (2297 Accounts)
</td> </tr> </tbody> <tfoot></tfoot> </table>
This is the macro im using:
Unfortunately this is returning '1916 Requests (/2297 Accounts)'. And I get an error every time i remove the "/"
Any help is appreciated.
Thanks
I have this in one cell:
<table bgcolor="#ffffff" border="1" cellspacing="0"><caption>
</caption> <thead> <tr> <th bgcolor="#c0c0c0">1013/1392</th> </tr> </thead> <tbody> </tbody> <tfoot></tfoot> </table>
and in another cell i want this to return:
<table bgcolor="#ffffff" border="1" cellspacing="0"><caption>
</caption> <thead> </thead> <tbody> <tr valign="TOP"> <td>1916 Requests (2297 Accounts)
</td> </tr> </tbody> <tfoot></tfoot> </table>
This is the macro im using:
Code:
=LEFT(C31,FIND("/",C31)-1)&" Requests ("&RIGHT(C31,FIND("/",C31))&" Accounts)"
Any help is appreciated.
Thanks