Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Anil_Babu_Samineni

Re: How to change Y-pos depending on value of variable

I think you need to maintain 2 objects. One for normal and one more for x and y pos?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
12 Replies
rudywelvaert
Creator
Creator

Thanks Anil,

Do you mean that when a button needs to be shown on 2 different positions, I need to make a copy of that button?

That was the whole idea, not to make a copy of the button, but use one single button that can be moved.

R.W.

Anil_Babu_Samineni
Author

Yes, I think with in the single object it not possible because there is no way to declare wirh in the caption tab

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
rudywelvaert
Creator
Creator

Thanks Anil

It's a pity

balar025
Creator III
Creator III

Can you please elaborate your problem or issue?

rudywelvaert
Creator
Creator

Hi Ravi,

this issue branches to earlier discussion

How to change Y-pos depending on value of variable

Thanks

R.W.

balar025
Creator III
Creator III

are you Allowed to use macro?

rudywelvaert
Creator
Creator

I think I'm allowed to use Macros but I never used a macro before
With upgrades of QlikView are they supported?

R.W.

balar025
Creator III
Creator III

If your system is IE PLugin enabled then macro will work with any QlikView upgrade Access Point.

Below is macro.

Sub MoveChart

  set obj = ActiveDocument.GetSheetObject("CH09")

    pos = obj.GetRect

    pos.Top = pos.Top + 20

    pos.Left = pos.Left + 15

    obj.SetRect pos

End Sub

rudywelvaert
Creator
Creator

Thanks Ravi,

How can I see in my system is IE Plugin enabled and if not how can I make my system IE plugin enabled?

R.W.