Dear Vic Fryzel,
thanks for your kind response,
in below coding
function Example() {
var myValue =
SpreadsheetApp.getActiveSpreadsheet().getActiveCell().getValue(); \
\i'm fetching the cell value in myValue
Browser.msgBox(myValue) \\a pop up of cell value
if (myValue = SpreadsheetApp.getsheets.SheetName()) {
Browser.msgBox(myValue) \\here i'm comparing sheets name with the
myValue
}
else { Browser.msgBox("No Sheet Found")
}
is it clear, i'm trying to find compare or find the sheet name with
the cell value.
pls help me in this regard.
On Feb 23, 9:07 pm, Vic Fryzel <[email protected]> wrote:
> Hi,
>
> Not sure what you're asking here. Please elaborate if you need help.
>
> Thanks,
> -Vic
>
> On Thu, Feb 23, 2012 at 1:45 AM, Srinivas Rao D K <
>
>
>
>
>
>
>
> [email protected]> wrote:
> > function Example() {
> > var myValue =
> > SpreadsheetApp.getActiveSpreadsheet().getActiveCell().getValue();
> > Browser.msgBox(myValue)
> > if (myValue = SpreadsheetApp.getsheets.SheetName()) {
> > Browser.msgBox(myValue)
> > }
> > else { Browser.msgBox("No Sheet Found")
> > }
>
> > }