Data Conversion

Matthew12

New Member
Joined
May 16, 2017
Messages
8
I'm hoping somebody here can help me with my problem as im well and truly fed up with it! :mad::LOL:

I have thousands of rows like in the example image below. This record summarises the attendance for a course of treatment.
At system level this record is linked to the patient attending and the worker and venue facilitating. These fields are important as we need
to be able generate case studies for clients, monitor worker performance and produce reports for our partners - all of which include attendance info.
(it actually goes up to 10 sessions in case it makes a difference)


OO2zt.png




I need to convert the data above so that i can aggreagate each booked session to a single date field and still be able to filter at row level by clients,
workers and venues. The below table would be ideal, with each session having its own record with the relevant client, worker and venue data.

Allmb.png



Is there anyway this can be achieved? Big thanks for any help you can provide! If you require further information please just ask.
 
Last edited by a moderator:
You are welcome!
Glad we got it to work for you.
 
Upvote 0

Excel Facts

How to create a cell-sized chart?
Tiny charts, called Sparklines, were added to Excel 2010. Look for Sparklines on the Insert tab.
You are welcome!
Glad we got it to work for you.

I just did a test on the actual data source and there seems to be an issue if there are columns the session attendance cols have ended. I didnt include them in the original example due to confidentiality. Is there anyway we can get it to stop and move onto the next row after the session 10 date field has been passed?

Thanks
 
Upvote 0
if there are columns the session attendance cols have ended
I am not sure I follow what you are trying to say there. Can you make up a simple example to show us what you mean?
 
Upvote 0
I just did a test on the actual data source and there seems to be an issue if there are columns the session attendance cols have ended. I didnt include them in the original example due to confidentiality. Is there anyway we can get it to stop and move onto the next row after the session 10 date field has been passed?

Thanks

That should read

I just did a test on the actual data source and there seems to be an issue if there are columns after the session columns have ended. I didnt include them in the original example due to confidentiality. Is there anyway we can get it to stop and move onto the next row after the session 10 date field has been passed? Session 10 is column AT, so i would need everything after to be ignored.

Thanks again
 
Upvote 0
Does every single record end at column AT then?+

If so, change this line:
Code:
Do Until srcWS.Cells(myRow, myCol) = ""
to this:
Code:
Do Until myCol > 46
 
Last edited:
Upvote 0
Session 10 is column AT
:confused: How is Session 10 ending at Column AT? You showed Session 1 starting at Column D and that each session has 2 fields to it (Session Outcome and Session Date)... by my calculations, the date for Session 10 would end at Column W.
 
Upvote 0

Forum statistics

Threads
1,215,032
Messages
6,122,770
Members
449,095
Latest member
m_smith_solihull

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