Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi!
I have the following problem:
I have a table like this
| from Month | from Year | until Month | until Year | Budget |
|---|---|---|---|---|
| 09 | 2012 | 12 | 2012 | 5% |
Now I want to create a table like this:
| Month | Year | Budget |
|---|---|---|
| 09 | 2012 | 5% |
| 10 | 2012 | 5% |
| 11 | 2012 | 5% |
| 12 | 2012 | 5% |
Any Ideas???????
Thanks for regards
Christian
Hi Christian,
Use the code in this post, that uses IntervalMatch() LOAD to solve the issue.
Hope that helps.
Miguel
Hi Christian,
Use the code in this post, that uses IntervalMatch() LOAD to solve the issue.
Hope that helps.
Miguel
Thanks a lot Miguel!
This is exactly what I search for!