Excel Function ISNAFind(...) to extract data from web database

RealGii

New Member
Joined
Jan 1, 2019
Messages
6
Please help me understand how to make this ISNAFind function, eg: =ISNAFind(A6,"PUB_HVA_Summary_Day","HVA_Summary_Day_Flot_Recovery_UnitEfficiencyAu_pct", DataRange) works. I have a e-base data management software and want excel to extract data into excel. The look up cell A6 could be date to look up. How do I make it work?
 

Excel Facts

Format cells as currency
Select range and press Ctrl+Shift+4 to format cells as currency. (Shift 4 is the $ sign).
Not really sure what you are trying to do... :confused:

But
if FIND does not find what it is looking for it does not return #N/A - it returns #VALUE!

FIND function has a maximum of 3 arguments, but you are trying to use 4
=FIND(FindText,WithinText)
- with an optional 3rd argument to start at a specific character position (an integer value)

To avoid error being returned, can wrap in IFERROR like this
=IFERROR(FIND(FindText,WithinText),"Not Found")
 
Upvote 0
ISNAFind is not an excel function, is it a UDF?
 
Upvote 0
It's easy to assume that the OP is missing some brackets, or it might even be gogglesheets.
 
Upvote 0

Forum statistics

Threads
1,206,755
Messages
6,074,757
Members
446,084
Latest member
WalmitAal

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top