Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Please help on
How can I put text and formula in a same cell i.e. This is total: #### (sum of different cell) Thanks |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You could use a UDF (demo one below). Add this to a standard module, then in
the cell you wish to show the total use (example sums B1:F1) = TotalMe(B1:F1) Function TotalMe(rng As Range) As String If Not rng Is Nothing Then TotalMe = "This Total is: " & Application.WorksheetFunction.Sum(rng) End If End Function -- Regards, Nigel wrote in message ... Please help on How can I put text and formula in a same cell i.e. This is total: #### (sum of different cell) Thanks |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
if the value is in C1, for example:
="Total: " &C1 -- Gary wrote in message ... Please help on How can I put text and formula in a same cell i.e. This is total: #### (sum of different cell) Thanks |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Suppose you have enteries in Rows or Columns then you can put this formula in
a cell, where you would like to show sum: Syntax: ="Whatever text you want : " & SUM(Range) Example: ="Total : " & SUM(A4:D4) -- Malik " wrote: Please help on How can I put text and formula in a same cell i.e. This is total: #### (sum of different cell) Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Excel Formula, text & number in cell | Excel Discussion (Misc queries) | |||
Excel Formula if cell is empty then no if text in cell then yes | Excel Worksheet Functions | |||
Can a cell in excel contain text and have a formula included? | Excel Discussion (Misc queries) | |||
My Excel formula is using my text as a cell range. | Excel Programming | |||
Excel 2000 Returning text value Not formula from Cell | Excel Programming |