Maintaining number format with combining of cells

punit83

Board Regular
Joined
Jan 17, 2018
Messages
66
Office Version
  1. 2019
Platform
  1. Windows
Hello !

I have a excel sheet with 3 column data

1st column = has sr no.
2nd column = has no. of unit
3rd coloum = has individual total amount value

Eg:-

#UnitTOTAL AMT
1100100.00
2200400.00
3300900.00
44001,600.00
55002,500.00
66003,600.00
77004,900.00
88006,400.00
99008,100.00
101,00010,000.00

<tbody>
</tbody>

Total Count10
Total Unit5,500.00
Total Amount38,500.00

<tbody>
</tbody>

I want all these 3 details in one cell with maintaining number format.

i am using these formula
="No : "&SUBTOTAL(3,Tablex[Unit])&" | "&"Unit : "&SUBTOTAL(9,Tablex[Unit])&" | "&"Total Amt : "&SUBTOTAL(9,Tablex[TOTAL AMT])

and result is like this
No : 10 | Unit : 5500 | Total Amt : 38500

<tbody>
</tbody>
( No comma separator)



(i am newbie so maybe there will be mistake in formula or even if anyone has easier formula than it will help me a lot)


Thanks in advance.
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Hi, welcome to the forum!

You can try this:

Rich (BB code):
="No : "&SUBTOTAL(3,Tablex[Unit])&" | "&"Unit : "&TEXT(SUBTOTAL(9,Tablex[Unit]),"#,##0")&" | "&"Total Amt : "&TEXT(SUBTOTAL(9,Tablex[TOTAL AMT]),"#,##0.00")
 
Upvote 0
Solution
Hello FormR,

i have new question please guide me.

I have this series


0.18 - 0.22
0.23 - 0.29
0.30 - 0.39
0.40 - 0.49
0.50 - 0.69
0.70 - 0.89
0.90 - 0.99
1.00 - 1.49
1.50 - 1.99

now for example i want to use formula that as i typed number in a1=any random number from 0.30 to 39 than result in b1 should be 0.30-0.39

is there any formula without vba ?


thanks in advance.
 
Upvote 0

Forum statistics

Threads
1,214,881
Messages
6,122,074
Members
449,064
Latest member
MattDRT

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top