Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default How do I Format a cell to make 1=$3.00 per cell then total?

How do I Format a cell to make 1=$3.00 per cell then total,
So if user puts 2 it will then equal $6.00.
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 709
Default How do I Format a cell to make 1=$3.00 per cell then total?

Theun, how about in another cell, put you number in A1 and this in another
cell =A1*3

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"Theun4gvn" wrote in message
...
How do I Format a cell to make 1=$3.00 per cell then total,
So if user puts 2 it will then equal $6.00.



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default How do I Format a cell to make 1=$3.00 per cell then total?

or just multiply the SUM formula by 3 and format as currency.

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Paul B" wrote in message
...
Theun, how about in another cell, put you number in A1 and this in another
cell =A1*3

--
Paul B
Always backup your data before trying something new
Please post any response to the newsgroups so others can benefit from it
Feedback on answers is always appreciated!
Using Excel 2002 & 2003

"Theun4gvn" wrote in message
...
How do I Format a cell to make 1=$3.00 per cell then total,
So if user puts 2 it will then equal $6.00.





  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,337
Default How do I Format a cell to make 1=$3.00 per cell then total?

right click sheet tabview codecopy/paste thisSAVE.works row2 or below in
col A

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row < 2 Or Target.Column < 1 Then Exit Sub
Application.EnableEvents = False
If IsNumeric(Target) Then Target = Target * 3
Application.EnableEvents = True
End Sub


--
Don Guillett
SalesAid Software

"Theun4gvn" wrote in message
...
How do I Format a cell to make 1=$3.00 per cell then total,
So if user puts 2 it will then equal $6.00.



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
How can I make a format to follow the cell Darren Excel Discussion (Misc queries) 3 August 18th 09 02:06 PM
How can I make a running total change in a new cell Meenie Excel Worksheet Functions 3 April 7th 08 07:48 PM
make cell show blank when total is zero Lindy Excel Discussion (Misc queries) 3 February 6th 08 03:09 PM
format cell to show leading zeros and make cell a three digit fiel Kristin Excel Worksheet Functions 2 July 28th 06 09:42 PM
make cell show blank when total is zero Bob L Excel Discussion (Misc queries) 3 May 19th 06 05:04 PM


All times are GMT +1. The time now is 06:08 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"