![]() |
WorkSheet Macro Help!
Dear all, I am trying to create a macro in Excel that when user select a cell listbox will appear. However, when I copy a cell to paste to anothe cell, first this below macro run so that I could not paste the valu that I copied. It means that if I want to use this macro in thi worksheet I couldn't copy one cell to another cell. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Listbox1.visible=true End Sub I would like to have a code that when I copy a cell this macro wil work until I finish to paste to another cell. Could any one can help me! Thanks a lot! Na -- lehaina ----------------------------------------------------------------------- lehainam's Profile: http://www.excelforum.com/member.php...fo&userid=1861 View this thread: http://www.excelforum.com/showthread.php?threadid=37761 |
WorkSheet Macro Help!
You could try
Private Sub Worksheet_SelectionChange(ByVal Target As Range) If application.cutcopymode = false then Listbox1.visible=true End Sub Hope this helps Rowan "lehainam" wrote: Dear all, I am trying to create a macro in Excel that when user select a cell a listbox will appear. However, when I copy a cell to paste to another cell, first this below macro run so that I could not paste the value that I copied. It means that if I want to use this macro in this worksheet I couldn't copy one cell to another cell. Private Sub Worksheet_SelectionChange(ByVal Target As Range) Listbox1.visible=true End Sub I would like to have a code that when I copy a cell this macro will work until I finish to paste to another cell. Could any one can help me! Thanks a lot! Nam -- lehainam ------------------------------------------------------------------------ lehainam's Profile: http://www.excelforum.com/member.php...o&userid=18615 View this thread: http://www.excelforum.com/showthread...hreadid=377616 |
All times are GMT +1. The time now is 03:22 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com