in reply to Error in excel reader
Another sugestion here that you may be able to try. The third argument of the Find method does not seem to be a string to me but an object. Looking at the Win32::OLE::Variant Perl documentation, I don't have experience with this but I think you can try to:
my $tmpstr = Variant( VT_BSTR, "Go Notifier Customization Availability + Flag 2" ) ; my $value = $worksheetfunction->Find("IB_MsgSig","E",$tmpstr) ;
edit: Another thing that you could try is to specify the range as E:E
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Error in excel reader
by davies (Monsignor) on Jan 02, 2019 at 14:51 UTC |