How do I multiply a cell by 1.5x a number in another cell

M

Max

Assuming source number in A1, other number in B1
then in C1: =A1*(B1*1.5)

The parens are really not necessary here, just added for clarity
 
G

Gord Dibben

In a third cell.........

=A1*(B1*1.5)

or more simply =A1*B1*1.5

I just like to put parens around things<g>


Gord Dibben MS Excel MVP
 
Top