Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default please help me keep my hair.......

Happy new year to you all.

I have a worksheet €˜Job Sheet €“ Monday! which has details of all work
carried out, listing all the different services done. I need to extract all
€œReg No€ from €œF6:F29€ that have a company code of €œ1€ in €œC6:C29€ and when
the corresponding cells in the job code column €œV6:V29€ are showing €œX€
These are to be listed in worksheet €˜Work Details €“ Monday! with the €œReg
No€ in €œE14:E27 and the cells in €œAA14:AA29€ need to show a €œ1€ when the
corresponding cell in €œE17:E27€ is populated. I also need to transfer other
services done on the same reg no from the first sheet to the second if the
same rules above apply with columns running up to €œBS€ but I want to get the
first part working before I sort that.

Thanks in advance for your help, I am quickly losing my hair over this.

  #2   Report Post  
Posted to microsoft.public.excel.misc
TWR TWR is offline
external usenet poster
 
Posts: 30
Default please help me keep my hair.......

Don't the ranges need to be of the same size...F6:F29 to E14:E27?

"izzyt1972" wrote:

Happy new year to you all.

I have a worksheet €˜Job Sheet €“ Monday! which has details of all work
carried out, listing all the different services done. I need to extract all
€œReg No€ from €œF6:F29€ that have a company code of €œ1€ in €œC6:C29€ and when
the corresponding cells in the job code column €œV6:V29€ are showing €œX€
These are to be listed in worksheet €˜Work Details €“ Monday! with the €œReg
No€ in €œE14:E27 and the cells in €œAA14:AA29€ need to show a €œ1€ when the
corresponding cell in €œE17:E27€ is populated. I also need to transfer other
services done on the same reg no from the first sheet to the second if the
same rules above apply with columns running up to €œBS€ but I want to get the
first part working before I sort that.

Thanks in advance for your help, I am quickly losing my hair over this.

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default please help me keep my hair.......

No, I dont think so, as not all the services carried out in a day are to be
reported on. I am only interested in reporting on the final service of the
day in V6:V29, and nothing else. I could make them the same if it would be
easier.

"TWR" wrote:

Don't the ranges need to be of the same size...F6:F29 to E14:E27?

"izzyt1972" wrote:

Happy new year to you all.

I have a worksheet €˜Job Sheet €“ Monday! which has details of all work
carried out, listing all the different services done. I need to extract all
€œReg No€ from €œF6:F29€ that have a company code of €œ1€ in €œC6:C29€ and when
the corresponding cells in the job code column €œV6:V29€ are showing €œX€
These are to be listed in worksheet €˜Work Details €“ Monday! with the €œReg
No€ in €œE14:E27 and the cells in €œAA14:AA29€ need to show a €œ1€ when the
corresponding cell in €œE17:E27€ is populated. I also need to transfer other
services done on the same reg no from the first sheet to the second if the
same rules above apply with columns running up to €œBS€ but I want to get the
first part working before I sort that.

Thanks in advance for your help, I am quickly losing my hair over this.

  #4   Report Post  
Posted to microsoft.public.excel.misc
TWR TWR is offline
external usenet poster
 
Posts: 30
Default please help me keep my hair.......

If the ranges are the same size, thr placing this formula in WorkDetails Cell
E6
=IF('Job Sheet €“ Monday'!C6=1,IF('Job Sheet €“ Monday'!U6="x",'Job
Sheet €“ Monday'!F6,""),"")

The single ticks ' are needed if the worksheet name has spaces. Make sure
the "X" is the correct case ( UPPER or lower). Then you can select cell E6
and fill down to E29.

Then in the same worksheet, cell AA6 use =IF(E6<"",1,"") meaning if the
value in E6 is not empty, place a 1 in AA6.

Make sense?
"izzyt1972" wrote:

No, I dont think so, as not all the services carried out in a day are to be
reported on. I am only interested in reporting on the final service of the
day in V6:V29, and nothing else. I could make them the same if it would be
easier.

"TWR" wrote:

Don't the ranges need to be of the same size...F6:F29 to E14:E27?

"izzyt1972" wrote:

Happy new year to you all.

I have a worksheet €˜Job Sheet €“ Monday! which has details of all work
carried out, listing all the different services done. I need to extract all
€œReg No€ from €œF6:F29€ that have a company code of €œ1€ in €œC6:C29€ and when
the corresponding cells in the job code column €œV6:V29€ are showing €œX€
These are to be listed in worksheet €˜Work Details €“ Monday! with the €œReg
No€ in €œE14:E27 and the cells in €œAA14:AA29€ need to show a €œ1€ when the
corresponding cell in €œE17:E27€ is populated. I also need to transfer other
services done on the same reg no from the first sheet to the second if the
same rules above apply with columns running up to €œBS€ but I want to get the
first part working before I sort that.

Thanks in advance for your help, I am quickly losing my hair over this.

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default please help me keep my hair.......

That works wonders, but do you know how to make it so there are no gaps in
the rows on Work details - Monday? That takes the data across, but if there
are reg nos in F6 to F12, but only F6, F9, and F12 have an "X" in column V,
it leaves gaps where there is a reg no in F7, F8, F10 and F11. It would be
helpful if there was a "chooseif" but there isnt.

"TWR" wrote:

If the ranges are the same size, thr placing this formula in WorkDetails Cell
E6
=IF('Job Sheet €“ Monday'!C6=1,IF('Job Sheet €“ Monday'!U6="x",'Job
Sheet €“ Monday'!F6,""),"")

The single ticks ' are needed if the worksheet name has spaces. Make sure
the "X" is the correct case ( UPPER or lower). Then you can select cell E6
and fill down to E29.

Then in the same worksheet, cell AA6 use =IF(E6<"",1,"") meaning if the
value in E6 is not empty, place a 1 in AA6.

Make sense?
"izzyt1972" wrote:

No, I dont think so, as not all the services carried out in a day are to be
reported on. I am only interested in reporting on the final service of the
day in V6:V29, and nothing else. I could make them the same if it would be
easier.

"TWR" wrote:

Don't the ranges need to be of the same size...F6:F29 to E14:E27?

"izzyt1972" wrote:

Happy new year to you all.

I have a worksheet €˜Job Sheet €“ Monday! which has details of all work
carried out, listing all the different services done. I need to extract all
€œReg No€ from €œF6:F29€ that have a company code of €œ1€ in €œC6:C29€ and when
the corresponding cells in the job code column €œV6:V29€ are showing €œX€
These are to be listed in worksheet €˜Work Details €“ Monday! with the €œReg
No€ in €œE14:E27 and the cells in €œAA14:AA29€ need to show a €œ1€ when the
corresponding cell in €œE17:E27€ is populated. I also need to transfer other
services done on the same reg no from the first sheet to the second if the
same rules above apply with columns running up to €œBS€ but I want to get the
first part working before I sort that.

Thanks in advance for your help, I am quickly losing my hair over this.



  #6   Report Post  
Posted to microsoft.public.excel.misc
TWR TWR is offline
external usenet poster
 
Posts: 30
Default please help me keep my hair.......

I'm sure there are many other ways to complete your task, but the only other
way I know of is to write some VBA Code to populate the Work Details sheet.

"izzyt1972" wrote:

That works wonders, but do you know how to make it so there are no gaps in
the rows on Work details - Monday? That takes the data across, but if there
are reg nos in F6 to F12, but only F6, F9, and F12 have an "X" in column V,
it leaves gaps where there is a reg no in F7, F8, F10 and F11. It would be
helpful if there was a "chooseif" but there isnt.

"TWR" wrote:

If the ranges are the same size, thr placing this formula in WorkDetails Cell
E6
=IF('Job Sheet €“ Monday'!C6=1,IF('Job Sheet €“ Monday'!U6="x",'Job
Sheet €“ Monday'!F6,""),"")

The single ticks ' are needed if the worksheet name has spaces. Make sure
the "X" is the correct case ( UPPER or lower). Then you can select cell E6
and fill down to E29.

Then in the same worksheet, cell AA6 use =IF(E6<"",1,"") meaning if the
value in E6 is not empty, place a 1 in AA6.

Make sense?
"izzyt1972" wrote:

No, I dont think so, as not all the services carried out in a day are to be
reported on. I am only interested in reporting on the final service of the
day in V6:V29, and nothing else. I could make them the same if it would be
easier.

"TWR" wrote:

Don't the ranges need to be of the same size...F6:F29 to E14:E27?

"izzyt1972" wrote:

Happy new year to you all.

I have a worksheet €˜Job Sheet €“ Monday! which has details of all work
carried out, listing all the different services done. I need to extract all
€œReg No€ from €œF6:F29€ that have a company code of €œ1€ in €œC6:C29€ and when
the corresponding cells in the job code column €œV6:V29€ are showing €œX€
These are to be listed in worksheet €˜Work Details €“ Monday! with the €œReg
No€ in €œE14:E27 and the cells in €œAA14:AA29€ need to show a €œ1€ when the
corresponding cell in €œE17:E27€ is populated. I also need to transfer other
services done on the same reg no from the first sheet to the second if the
same rules above apply with columns running up to €œBS€ but I want to get the
first part working before I sort that.

Thanks in advance for your help, I am quickly losing my hair over this.

  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 10
Default please help me keep my hair.......

ok, thanks. I will have a go at that. thanks for your time.

"TWR" wrote:

I'm sure there are many other ways to complete your task, but the only other
way I know of is to write some VBA Code to populate the Work Details sheet.

"izzyt1972" wrote:

That works wonders, but do you know how to make it so there are no gaps in
the rows on Work details - Monday? That takes the data across, but if there
are reg nos in F6 to F12, but only F6, F9, and F12 have an "X" in column V,
it leaves gaps where there is a reg no in F7, F8, F10 and F11. It would be
helpful if there was a "chooseif" but there isnt.

"TWR" wrote:

If the ranges are the same size, thr placing this formula in WorkDetails Cell
E6
=IF('Job Sheet €“ Monday'!C6=1,IF('Job Sheet €“ Monday'!U6="x",'Job
Sheet €“ Monday'!F6,""),"")

The single ticks ' are needed if the worksheet name has spaces. Make sure
the "X" is the correct case ( UPPER or lower). Then you can select cell E6
and fill down to E29.

Then in the same worksheet, cell AA6 use =IF(E6<"",1,"") meaning if the
value in E6 is not empty, place a 1 in AA6.

Make sense?
"izzyt1972" wrote:

No, I dont think so, as not all the services carried out in a day are to be
reported on. I am only interested in reporting on the final service of the
day in V6:V29, and nothing else. I could make them the same if it would be
easier.

"TWR" wrote:

Don't the ranges need to be of the same size...F6:F29 to E14:E27?

"izzyt1972" wrote:

Happy new year to you all.

I have a worksheet €˜Job Sheet €“ Monday! which has details of all work
carried out, listing all the different services done. I need to extract all
€œReg No€ from €œF6:F29€ that have a company code of €œ1€ in €œC6:C29€ and when
the corresponding cells in the job code column €œV6:V29€ are showing €œX€
These are to be listed in worksheet €˜Work Details €“ Monday! with the €œReg
No€ in €œE14:E27 and the cells in €œAA14:AA29€ need to show a €œ1€ when the
corresponding cell in €œE17:E27€ is populated. I also need to transfer other
services done on the same reg no from the first sheet to the second if the
same rules above apply with columns running up to €œBS€ but I want to get the
first part working before I sort that.

Thanks in advance for your help, I am quickly losing my hair over this.

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
Nudge entry just a hair [email protected] Excel Discussion (Misc queries) 1 August 29th 06 01:02 AM
Pulling my hair out here gtg689a Excel Worksheet Functions 0 April 5th 06 03:42 PM
Ripping my hair out, please help! trafficbroker Excel Discussion (Misc queries) 5 November 18th 05 04:43 PM
tearing my hair out can it be done itsglitzy Charts and Charting in Excel 2 December 1st 04 06:15 AM
Pulling hair out with VLOOKUP Confused Excel Worksheet Functions 5 November 22nd 04 05:05 PM


All times are GMT +1. The time now is 02:21 PM.

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

About Us

"It's about Microsoft Excel"