Hi there I am not a VBA Programmer so its all new to me
What I am trying to do is alter an existing VBA code basically
I got 2 sheets
In sheet one I get the site id and now I wanted to create a function which take site id and a string Title as parameters and
Return a cell value from sheet two how can I do this

Eg.
In sheet1 I should be able to call

Name = GetName(SiteId,”SalesManager”)

Public Function GetName ( int SiteID, string Title ) as string

GetName = from st in Sheet2
Where st.siteid = SiteId and st.title = Title
Select st.fullname

End Function
Appreciate all your help
Thanks