Excel Copy Cell Text. Not Working !!

Discussion, questions and support.
Post Reply
kamlismit
Posts: 7
Joined: Aug 6th, ’21, 12:21

Post by kamlismit » Aug 6th, ’21, 13:07

I am trying to copy the text of a cell.

Note: I JUST CLICK/SELECT THE CELL AND COPY. I do not double-click the cell and later copy.

But when I try to view it in the clipboard. I don't get the value of the cell text in the clipboard.

Can someone help me to resolve this problem?

I really love FastKeys and its clipboard manager and I dont feel to leave this for this problem.

I have also removed Excel from restrictions.


https://imgur.com/n5AGJgw

https://ibb.co/T0L0gT7
User avatar
Tom
Posts: 791
Joined: Nov 24th, ’15, 23:39

Post by Tom » Aug 7th, ’21, 17:26

There are some issues with copying clipboard from Excel. We will try to resolve this in one of the next releases.
kamlismit
Posts: 7
Joined: Aug 6th, ’21, 12:21

Post by kamlismit » Aug 9th, ’21, 05:25

Thank you, Tom. I hope you resolve this issue as soon as possible.

Is there any code or AHK code to temporarily resolve this issue?

PS: Eagerly waiting for the next release. Fastkeys is love.
kamlismit
Posts: 7
Joined: Aug 6th, ’21, 12:21

Post by kamlismit » Aug 9th, ’21, 11:32

I have temporarily resolved this issue to the best of my knowledge.

I have created a Shortcut Ctrl + C and added this code in the Command which is only active with Excel.

Code: Select all

SetTitleMatchMode, 2
#IfWinActive Excel

send, ^c
Sleep, 200   
ClipBoard = %ClipBoard% ; Convert to text
   Sendplay ^v ;
return
Image



Now I can view Text of every Cell that I copy, in the clipboard manager.

Hope this helps with the further update.
Post Reply