Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Steved
 
Posts: n/a
Default Sheet 2 name is "BTB_TACTIMESHT_578162"

Hello from Steved

I would like to use the name "BTB_TACTIMESHT_578162" how do I acheive this
please, in the below formula.

Sheet 1 the formula is
=IF(OR(F1="A",E1=12),(INT(E1)*60)+((E1-INT(E1))*100),(INT(E1)*60)+((E1-INT(E1))*100)+720)

Sheet 2 name is Sheet 2 name is "BTB_TACTIMESHT_578162"
Thankyou.
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Biff
 
Posts: n/a
Default Sheet 2 name is "BTB_TACTIMESHT_578162"

Hi!

Don't'cha just love those long sheet names? <VVBG

Temporarily rename sheet BTB_TACTIMESHT_578162 to 1. (or X or something
really short)

Edit your formula to reference the new temporary sheet name:

=IF(OR('1'!F1="A",'1'!E1=12),(INT('1'!E1)*60)+((' 1'!E1-INT('1'!E1))*100),(INT('1'!E1)*60)+(('1'!E1-INT('1'!E1))*100)+720)

Change the sheet name from 1 back to BTB_TACTIMESHT_578162.

Just look at how long that formula is with that long sheet name. Hint, hint
<g

Biff

"Steved" wrote in message
...
Hello from Steved

I would like to use the name "BTB_TACTIMESHT_578162" how do I acheive this
please, in the below formula.

Sheet 1 the formula is
=IF(OR(F1="A",E1=12),(INT(E1)*60)+((E1-INT(E1))*100),(INT(E1)*60)+((E1-INT(E1))*100)+720)

Sheet 2 name is Sheet 2 name is "BTB_TACTIMESHT_578162"
Thankyou.



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Steved
 
Posts: n/a
Default Sheet 2 name is "BTB_TACTIMESHT_578162"

Thanks Biff

"Biff" wrote:

Hi!

Don't'cha just love those long sheet names? <VVBG

Temporarily rename sheet BTB_TACTIMESHT_578162 to 1. (or X or something
really short)

Edit your formula to reference the new temporary sheet name:

=IF(OR('1'!F1="A",'1'!E1=12),(INT('1'!E1)*60)+((' 1'!E1-INT('1'!E1))*100),(INT('1'!E1)*60)+(('1'!E1-INT('1'!E1))*100)+720)

Change the sheet name from 1 back to BTB_TACTIMESHT_578162.

Just look at how long that formula is with that long sheet name. Hint, hint
<g

Biff

"Steved" wrote in message
...
Hello from Steved

I would like to use the name "BTB_TACTIMESHT_578162" how do I acheive this
please, in the below formula.

Sheet 1 the formula is
=IF(OR(F1="A",E1=12),(INT(E1)*60)+((E1-INT(E1))*100),(INT(E1)*60)+((E1-INT(E1))*100)+720)

Sheet 2 name is Sheet 2 name is "BTB_TACTIMESHT_578162"
Thankyou.




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Arvi Laanemets
 
Posts: n/a
Default Sheet 2 name is "BTB_TACTIMESHT_578162"

Hi

At start, simplify youf formula somewhat:
=INT(E1)*60+(E1-INT(E1))*100+720*AND(F1<"A",E1<12)

For second, my advice is never to use long sheet names (additionally to
Biff's reasoning, it makes difficult to switch between sheet tabs, as you
have less of them visible), and also avoid sheet names which contain spaces
(no case here lukily).

At last, when for some reason you don't want to opt Biff's solution, then
there is another way:
Select the cell, to where you want to enter the formula;
Create short named range(s), like
rng1=BTB_TACTIMESHT_578162!$E1
rng2=BTB_TACTIMESHT_578162!$F1
(Here I assumed that both cells you are referring to are situated on another
sheet, and that you'll copy your formula down. When otherwise, then you'll
need to make some changes. And range names gan be something meaningfull
of-course)

The formula will now be:
=INT(rng1)*60+(rng1-INT(rng1))*100+720*AND(rng2<"A",rng1<12)


--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )



"Steved" wrote in message
...
Hello from Steved

I would like to use the name "BTB_TACTIMESHT_578162" how do I acheive this
please, in the below formula.

Sheet 1 the formula is
=IF(OR(F1="A",E1=12),(INT(E1)*60)+((E1-INT(E1))*100),(INT(E1)*60)+((E1-INT(E1))*100)+720)

Sheet 2 name is Sheet 2 name is "BTB_TACTIMESHT_578162"
Thankyou.



  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Steved
 
Posts: n/a
Default Sheet 2 name is "BTB_TACTIMESHT_578162"

Hello Arvi from Steved

Thankyou.

"Arvi Laanemets" wrote:

Hi

At start, simplify youf formula somewhat:
=INT(E1)*60+(E1-INT(E1))*100+720*AND(F1<"A",E1<12)

For second, my advice is never to use long sheet names (additionally to
Biff's reasoning, it makes difficult to switch between sheet tabs, as you
have less of them visible), and also avoid sheet names which contain spaces
(no case here lukily).

At last, when for some reason you don't want to opt Biff's solution, then
there is another way:
Select the cell, to where you want to enter the formula;
Create short named range(s), like
rng1=BTB_TACTIMESHT_578162!$E1
rng2=BTB_TACTIMESHT_578162!$F1
(Here I assumed that both cells you are referring to are situated on another
sheet, and that you'll copy your formula down. When otherwise, then you'll
need to make some changes. And range names gan be something meaningfull
of-course)

The formula will now be:
=INT(rng1)*60+(rng1-INT(rng1))*100+720*AND(rng2<"A",rng1<12)


--
Arvi Laanemets
( My real mail address: arvi.laanemets<attarkon.ee )



"Steved" wrote in message
...
Hello from Steved

I would like to use the name "BTB_TACTIMESHT_578162" how do I acheive this
please, in the below formula.

Sheet 1 the formula is
=IF(OR(F1="A",E1=12),(INT(E1)*60)+((E1-INT(E1))*100),(INT(E1)*60)+((E1-INT(E1))*100)+720)

Sheet 2 name is Sheet 2 name is "BTB_TACTIMESHT_578162"
Thankyou.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Daily Totals on a summary sheet Allewyn Excel Worksheet Functions 10 June 27th 06 04:47 PM
Compiling macro based on cell values simonsmith Excel Discussion (Misc queries) 1 May 16th 06 08:31 PM
lock tab in sheet 2 until cell in sheet one is completed john tempest Excel Worksheet Functions 7 November 24th 05 08:45 AM
Using a relative SHEET reference for source data in a chart James Charts and Charting in Excel 6 August 16th 05 05:07 PM
linking multiple sheets to a summary sheet greg g Excel Discussion (Misc queries) 1 December 16th 04 07:43 AM


All times are GMT +1. The time now is 04:16 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"