Shapes Look Different for Other User

joebbshop

New Member
Joined
Aug 4, 2009
Messages
26
I have developed a dashboard that summarizes data using some shapes. The VBA code positions and re-sizes the shapes based what's found in the raw data. It works fine on my computer, but when another user opens it up, the shapes are all in the wrong place and overlapping. He works in a different city and I've asked him for a screen shot but I don't think he knows what I mean. The code doesn't seem to error out, but the shapes aren't positioned where they're supposed to be.

Is it possible that his screen resolution changes how the VBA code works? If so, what can I do to compensate? If not, what else could be the problem?

Here's a portion of the code...

Code:
Private Sub UpdateBox(curBox As Shape, n)
    Dim curValue
    
    
    If Left(curBox.Name, 3) = "Val" Then
        curValue = Format(BoxArray(n, 2), "$###,###,,M")
    Else
        curValue = BoxArray(n, 2)
    End If
    On Error GoTo 0
    
    curBox.Select
    With Selection
        If BoxArray(n, 2) <> 0 Then
            .ShapeRange(1).TextFrame2.TextRange.Characters.Text = curValue & BoxArray(n, 3)
        Else
            .ShapeRange(1).TextFrame2.TextRange.Characters.Text = ""
        End If
        
        .ShapeRange.Title = curValue
        .ShapeRange.AlternativeText = BoxArray(n, 6)
        .Height = BoxArray(n, 4)
        .Top = BoxArray(n, 5)
        
    End With
End Sub
 

Excel Facts

How to calculate loan payments in Excel?
Use the PMT function: =PMT(5%/12,60,-25000) is for a $25,000 loan, 5% annual interest, 60 month loan.

Forum statistics

Threads
1,217,383
Messages
6,136,272
Members
450,001
Latest member
KWeekley08

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