FORUMLA HELP
I want a formula to take the information from cell A (1;12) and cell B (7.75;6.95) and put it into cell C as (1 £7.75 12 £6.95), is this possible ?
ExcelExperts.comExcel Consultancy, VBA Consultancy, Training and Tips Call:+442081234832 |
|
Excel / VBA ConsultancyFree Training VideosFree SpreadsheetsExcel / VBA JobsNavigationWho's onlineThere are currently 0 users and 432 guests online.
New Excel Experts
Current Excel / VBA Jobs |
FORUMLA HELPI want a formula to take the information from cell A (1;12) and cell B (7.75;6.95) and put it into cell C as (1 £7.75 12 £6.95), is this possible ? |
Highest Ranked Users
Recent Blogs
ForumsRecent comments
User login |
Solution
Hi,
Use this function for your result.. May be it work for you..
="("&MID(A1,2,FIND(";",A1)-2)&" £ "&MID(B1,2,FIND(";",B1)-2)&" "&MID(A1,FIND(";",A1)+1,(LEN(A1)-(FIND(";",A1)+1)))&" £ "&MID(B1,FIND(";",B1)+1,(LEN(B1)-(FIND(";",B1)+1)))&")"
Just copy paste in Cell C1.
Thanks
Tanuj