Splitting rows in a table based on date fields.

Tom123456

New Member
Joined
Feb 19, 2016
Messages
34
Hey,

I have a list of bookings that have a start & end date and a amount.

I need to split the table so that each month has it's own line and % amount

For example before it would look like this.

BookingStart DateEnd Date
Booking 101/08/201730/11/2017
Booking 101/10/201730/11/2017
Booking 211/08/201730/09/2017
Booking 211/08/201730/09/2017
Booking 307/08/201731/08/2017

<tbody>
</tbody>










but i need to work out how to split it to become like so

BookingStart DateEnd Date
Booking 101/08/201731/08/2017
Booking 101/09/201730/09/2017
Booking 211/08/201731/08/2017
Booking 201/09/201730/09/2017
Booking 211/08/201731/08/2017
Booking 201/09/201730/09/2017
Booking 307/08/201731/08/2017

<tbody>
</tbody>













I've added columns that calculates the number of days/month in each row and the amount per day but don't know where to start with using this information to split like this- if anyone can point me in the right direction it would be a great help!

Cheers,
Tom

<tbody>
</tbody>
 
Hi Joe,

I have a few more queries regarding this topic - I'll add them here but let me know if a new topic would be more suitable.

Firstly I've added more columns to my data set and on occasion the fields may be empty - however when the module runs to split them out certain fields fail and returns a run time error 94 - invalid use of null for some of these fields - I want the process to run even if some of the fields are blank.

It seems to accept some fields being blank but not others but i cannot work out why - is there anyway to always duplicate the field even if it's blank?

in one case Both fields are empty in source 'data' table both formatted as short text cols & defined as a string in the VBA but it only errors out if the rows are blank on the 2nd col (runs ok on first col being blank)

Cheers,
Tom
 
Last edited:
Upvote 0

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Check the field properties in the table, to see if they are required fields and allow duplicates and zero length. You may need to adjust some of those properties to accommodate this.
 
Upvote 0
Hi Joe,

Both the fields in the 'data' table & 'dest' table are not required fields and allow zero-length & duplicates.

Is there anything else you'd recommend checking?

Cheers,
Tom
 
Upvote 0
Without seeing the table and data, it is really hard to say. I would typically look at everything and try to work through it, using different debugging techniques (like adding lots of Message Boxes to my code to see what the SQL code looks like, etc).
 
Upvote 0
Is it possible to attach the database here or email you the access database so that you can access a copy? It's a small file as data table contains just 1 row that i am testing with for now.
 
Upvote 0
No, you cannot upload files to this site. You would need to add them to a file sharing site, and then provide a link here to it.
Note that I do not have the ability to download internet files from my current location (corporate security policy), but I do at home. So I could probably look at it tonight or this weekend.
 
Upvote 0
If there is a data file, be sure to upload a sample data file too.
 
Upvote 0
I should of added the file contains 1 row in the data table and when you run the macro 'preprocess' to run the VBA it will produce the error message - will this work ?
 
Last edited:
Upvote 0
Unfortunately, I did not get a chance to look at this over the weekend. We had family in town, and they were staying in my computer room!
Hope to take a look at it tonight.
 
Upvote 0

Forum statistics

Threads
1,215,352
Messages
6,124,453
Members
449,161
Latest member
NHOJ

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