Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Can I do this:
=CONCATENATE("Books (",=counta(G:G),x,")") ????????????????????? I'm trying to result: Books (12345) |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
="Books "&COUNTA(G:G)
-- If my posting was helpful, please click the "Yes" button. ROCK ON!, Scott "GoinCrazy" wrote: Can I do this: =CONCATENATE("Books (",=counta(G:G),x,")") ????????????????????? I'm trying to result: Books (12345) |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Oops.... forgot the ()
="Books ("&COUNTA(G:G)&")" -- If my posting was helpful, please click the "Yes" button. ROCK ON!, Scott "GoinCrazy" wrote: Can I do this: =CONCATENATE("Books (",=counta(G:G),x,")") ????????????????????? I'm trying to result: Books (12345) |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=CONCATENATE("Books (",COUNTA(G:G),")")
"GoinCrazy" wrote: Can I do this: =CONCATENATE("Books (",=counta(G:G),x,")") ????????????????????? I'm trying to result: Books (12345) |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
="Books (" & COUNTA(G:G) & ")"
-- Gary''s Student - gsnu200816 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula Bar F9 Result differs from cell result??? | Excel Worksheet Functions | |||
Why does Concatenate formula show but not produce a cell result? | Excel Worksheet Functions | |||
Can a cell be *either text or the result of a formula? | Excel Worksheet Functions | |||
Advanced formula - Return result & Show Cell Reference of result | Excel Worksheet Functions | |||
reference the result of a formula in a text formatted cell | Excel Discussion (Misc queries) |