Issues with macro updating graph - maybe Mac/PC compatibility

tombecker1978

New Member
Joined
Oct 14, 2013
Messages
3
Hi all,

I am having real issues with a spreadsheet.

There are three sheets:

1 input
2 log (which converts the data into a tabular form, macro converts each entry into another line and then wipes the data from the input sheet for the next input)
3 graph (which presents the log into a graph format)

Easy.... however it seems to work fine on my Mac, but then I sent it to a friend to use on a PC and the graph does not update, now on my new Mac it does not work either.

I made the spreadsheet a few years ago, and I haven't used excel since really so I just don't know where to start, any help appreciated.

Macro code is as follows:
Code:
Sub Macro3()
'
' Macro3 Macro
'


'
    Sheets("Ranges").Visible = True
    Sheets("Ranges").Select
    Range("a10:M10").Select
    Selection.Copy
    Sheets("EEOI Log").Select
    Range("b500").End(xlUp).Offset(1, 0).Select
    Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False
    Selection.PasteSpecial Paste:=xlFormats, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False
    Sheets("Ranges").Select
    ActiveWindow.SelectedSheets.Visible = False
    Sheets("EEOI Calculator").Select
    Range("c12").Select
    Selection.ClearContents
    Range("c14").Select
    Selection.ClearContents
    Range("c16").Select
    Selection.ClearContents
    Range("data").Select
    Selection.ClearContents
    Sheets("EEOI Log").Select
    
End Sub
Sub Macro4()
'
' Macro4 Macro
'


'
    Range("C13:E13").Select
    Selection.Copy
    Range("C14").Select
    Selection.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False
    Selection.PasteSpecial Paste:=xlFormats, Operation:=xlNone, SkipBlanks:= _
        False, Transpose:=False
End Sub

Its probably not the macro that's the issue, below is a screenshot of the graph page with inputs;

f57c494e-cd79-4941-bfcf-c0c21968cd99


Thanks

Tom
 
Last edited by a moderator:

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.

Forum statistics

Threads
1,221,418
Messages
6,159,790
Members
451,589
Latest member
Harold14

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top