ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   macro needed please (https://www.excelbanter.com/excel-discussion-misc-queries/190339-macro-needed-please.html)

jackrobyn1

macro needed please
 
i need a macro that will when run will put a number 1 in cell A1 but if there
is already a number 1 i want the same macro to enter a 0 (zero) i supose its
a bit like a switch. To sum up exactly what i need.... If there is a 0 (zero)
i want the macro to enter a 1 in cell A1 and then print page 1 of my "output"
worksheet. If there is already a 1 in A1 then i want it to enter a 0 (zero)
with no print.

Sorry if this seems silly but it really would be useful in what im trying to
achieve
p.s. the macro will run when i click an auto shape thats assigned to it
Thanks

L. Howard Kittle

macro needed please
 
Maybe something like this...

Sub ZeroOrOne()

If Range("A1").Value = 0 Then
Range("A1").Value = 1
ActiveWindow.SelectedSheets.PrintOut
ElseIf Range("A1").Value = 1 Then
Range("A1").Value = 0
End If

End Sub

HTH
Regards,
Howard

"jackrobyn1" wrote in message
...
i need a macro that will when run will put a number 1 in cell A1 but if
there
is already a number 1 i want the same macro to enter a 0 (zero) i supose
its
a bit like a switch. To sum up exactly what i need.... If there is a 0
(zero)
i want the macro to enter a 1 in cell A1 and then print page 1 of my
"output"
worksheet. If there is already a 1 in A1 then i want it to enter a 0
(zero)
with no print.

Sorry if this seems silly but it really would be useful in what im trying
to
achieve
p.s. the macro will run when i click an auto shape thats assigned to it
Thanks




EricJohnson

macro needed please
 


"jackrobyn1" wrote:

i need a macro that will when run will put a number 1 in cell A1 but if there
is already a number 1 i want the same macro to enter a 0 (zero) i supose its
a bit like a switch. To sum up exactly what i need.... If there is a 0 (zero)
i want the macro to enter a 1 in cell A1 and then print page 1 of my "output"
worksheet. If there is already a 1 in A1 then i want it to enter a 0 (zero)
with no print.

Sorry if this seems silly but it really would be useful in what im trying to
achieve
p.s. the macro will run when i click an auto shape thats assigned to it
Thanks


EricJohnson[_2_]

macro needed please
 
Here's one approach:

sub Switch()
cells(1, 1) = abs(cells(1, 1) - 1)
if cells(1, 1) = 1 then
'Call your print routine - you can record a macro if needed.
end if
end sub

Note that if cell(1, 1) contains 1, then 1 - 1 = 0, and the absolute value
of 0 = 0. If the cell contains 0 then 0 - 1 = -1 and the absolute value of
-1 is 1. So, you've got your switch.

"jackrobyn1" wrote:

i need a macro that will when run will put a number 1 in cell A1 but if there
is already a number 1 i want the same macro to enter a 0 (zero) i supose its
a bit like a switch. To sum up exactly what i need.... If there is a 0 (zero)
i want the macro to enter a 1 in cell A1 and then print page 1 of my "output"
worksheet. If there is already a 1 in A1 then i want it to enter a 0 (zero)
with no print.

Sorry if this seems silly but it really would be useful in what im trying to
achieve
p.s. the macro will run when i click an auto shape thats assigned to it
Thanks



All times are GMT +1. The time now is 03:56 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com