Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default how to display cell value in formula

hi guys,
my problem is this, a1 is 5, b1 is 6, c1= a1*b1, how can i
display the cell value as 5*6.
PLZ HELP
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 470
Default how to display cell value in formula

Try: =TEXT(A1,"#")&"*"&TEXT(B1,"#")

"harshu444" wrote:

hi guys,
my problem is this, a1 is 5, b1 is 6, c1= a1*b1, how can i
display the cell value as 5*6.
PLZ HELP

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,501
Default how to display cell value in formula

Not sure I fully understand but how about this in C1

=A1 &"*"& B1&" = "&A1*B1

Mike

"harshu444" wrote:

hi guys,
my problem is this, a1 is 5, b1 is 6, c1= a1*b1, how can i
display the cell value as 5*6.
PLZ HELP

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default how to display cell value in formula

On Jan 17, 7:13*pm, WLMPilot
wrote:
Try: * =TEXT(A1,"#")&"*"&TEXT(B1,"#")



"harshu444" wrote:
hi guys,
* * * * * * my problem is this, a1 is 5, b1 is 6, c1= a1*b1, how can i
displaythecellvalueas 5*6.
PLZ HELP- Hide quoted text -


- Show quoted text -


ya thats one way of doing it but isnt there any other smarter way,
cause my formula is quite big, is there any macro which can be run
which can show me the formula and instead of cell referance it will
show me cell value in that formula like simply "5*6" instead of "a1*b1"
  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 364
Default how to display cell value in formula

if you want to do it with code, you'll have to break your formula down
something like this:

sub test
Range("c1").Formula = "=" & Range("A1").Value & "*" & Range("b1").Value & ""
end sub
--

Gary


"harshu444" wrote in message
...
hi guys,
my problem is this, a1 is 5, b1 is 6, c1= a1*b1, how can i
display the cell value as 5*6.
PLZ HELP


Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Display formula on the cell journey Excel Worksheet Functions 2 August 27th 09 11:23 AM
Display cell ref for MAX formula bookman3 Excel Discussion (Misc queries) 7 October 17th 08 06:31 AM
Formula to display cell reference (ex.. B7) Irv Excel Worksheet Functions 10 May 9th 06 10:37 AM
Display formula in cell Trish Excel Discussion (Misc queries) 1 May 13th 05 09:14 AM
Cell Naming and Formula bar Display Adrian[_7_] Excel Programming 1 August 28th 04 01:42 PM


All times are GMT +1. The time now is 02:10 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"