ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   File Location code (https://www.excelbanter.com/excel-programming/274991-file-location-code.html)

Rohit Thomas

File Location code
 
Hello All,

I'm using the following modified code that was posted
by "Dan E." several weeks ago to write the path of a file
out to a cell. Below is the code:

FileName = Application.GetOpenFilename("Text Files _
(*.txt), *.txt")
CellLocation = Len(FileName) + 1 - InStr(1, StrReverse _
(FileName), "\")
FilePath = Mid(FileName, 1, CellLocation)
Range("G46").Value = FilePath

When I run this code using Excel 97, it gives me the
following error: Sub or Funtion not defined for
"StrReverse". Works fine on Excel 2K, what am I missing?

Thanks in advance,
Rohit

Harald Staff[_4_]

File Location code
 
Hi Rohit

Excel 97 is older than Excel 2000, which is older than Excel XP. Things (here StrReverse)
are invented and added to each new version. Great thing is that nothing is removed. For
cross-version development you /must/ use the oldest version to develop on, or you're
working blindfolded and will be rewarded by error messages like this.

--
HTH. Best wishes Harald
Excel MVP

Followup to newsgroup only please.

"Rohit Thomas" wrote in message
...
Hello All,

I'm using the following modified code that was posted
by "Dan E." several weeks ago to write the path of a file
out to a cell. Below is the code:

FileName = Application.GetOpenFilename("Text Files _
(*.txt), *.txt")
CellLocation = Len(FileName) + 1 - InStr(1, StrReverse _
(FileName), "\")
FilePath = Mid(FileName, 1, CellLocation)
Range("G46").Value = FilePath

When I run this code using Excel 97, it gives me the
following error: Sub or Funtion not defined for
"StrReverse". Works fine on Excel 2K, what am I missing?

Thanks in advance,
Rohit




Mark Bigelow

File Location code
 
Hi Rohit,

The reason is the name of the function is InStrRev, not StrRev. Just
change that and the code should be fine.

Let me know if that doesn't work.

Mark

---
Mark Bigelow
mjbigelow at hotmail dot com
http://hm.imperialoiltx.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!

Rohit Thomas

File Location code
 
Herald,

Can I use something in it's place to get the desired
result that I'm looking for? Any suggestions on how I can
use the GetOpenFileName dialog to write the path of a file
to a cell?

Rohit
-----Original Message-----
Hi Rohit

Excel 97 is older than Excel 2000, which is older than

Excel XP. Things (here StrReverse)
are invented and added to each new version. Great thing

is that nothing is removed. For
cross-version development you /must/ use the oldest

version to develop on, or you're
working blindfolded and will be rewarded by error

messages like this.

--
HTH. Best wishes Harald
Excel MVP

Followup to newsgroup only please.

"Rohit Thomas" wrote in message
...
Hello All,

I'm using the following modified code that was posted
by "Dan E." several weeks ago to write the path of a

file
out to a cell. Below is the code:

FileName = Application.GetOpenFilename("Text Files _
(*.txt), *.txt")
CellLocation = Len(FileName) + 1 - InStr(1, StrReverse _
(FileName), "\")
FilePath = Mid(FileName, 1, CellLocation)
Range("G46").Value = FilePath

When I run this code using Excel 97, it gives me the
following error: Sub or Funtion not defined for
"StrReverse". Works fine on Excel 2K, what am I missing?

Thanks in advance,
Rohit



.


Dan E[_2_]

File Location code
 
Mark,

It's StrReverse and it reverses a string
ie ABC - CBA

InStrRev is a search tool for searching for one string
within another from the end to the beginning, they are
nothing alike.

Dan E

"Mark Bigelow" wrote in message ...
Hi Rohit,

The reason is the name of the function is InStrRev, not StrRev. Just
change that and the code should be fine.

Let me know if that doesn't work.

Mark

---
Mark Bigelow
mjbigelow at hotmail dot com
http://hm.imperialoiltx.com

*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!




Harald Staff[_4_]

File Location code
 
One way:

Sub test()
Dim filename As String, L As Long
filename = Application.GetOpenFilename("Text Files " & _
"(*.txt), *.txt")
For L = Len(filename) To 1 Step -1
If Mid$(filename, L, 1) = "\" Then Exit For
Next
MsgBox Left$(filename, L - 1)
End Sub

If a folder is all you need selected, then see Jim Rech's "Browse for folder" at
http://www.bmsltd.co.uk/MVP/Default.htm

--
HTH. Best wishes Harald
Excel MVP

Followup to newsgroup only please.

"Rohit Thomas" wrote in message
...
Herald,

Can I use something in it's place to get the desired
result that I'm looking for? Any suggestions on how I can
use the GetOpenFileName dialog to write the path of a file
to a cell?

Rohit
-----Original Message-----
Hi Rohit

Excel 97 is older than Excel 2000, which is older than

Excel XP. Things (here StrReverse)
are invented and added to each new version. Great thing

is that nothing is removed. For
cross-version development you /must/ use the oldest

version to develop on, or you're
working blindfolded and will be rewarded by error

messages like this.

--
HTH. Best wishes Harald
Excel MVP

Followup to newsgroup only please.

"Rohit Thomas" wrote in message
...
Hello All,

I'm using the following modified code that was posted
by "Dan E." several weeks ago to write the path of a

file
out to a cell. Below is the code:

FileName = Application.GetOpenFilename("Text Files _
(*.txt), *.txt")
CellLocation = Len(FileName) + 1 - InStr(1, StrReverse _
(FileName), "\")
FilePath = Mid(FileName, 1, CellLocation)
Range("G46").Value = FilePath

When I run this code using Excel 97, it gives me the
following error: Sub or Funtion not defined for
"StrReverse". Works fine on Excel 2K, what am I missing?

Thanks in advance,
Rohit



.





All times are GMT +1. The time now is 12:00 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com