The data I am working with is like this:
ID
Name
Year (string value entered)
Amount
I want to have a view that would take that information and give the following:
ID
Name
Amount (if the year value is X) AS X Amount
Amount (if the year value is Y) AS Y Amount
Right now we only have two years worth of data. This record is done on an annual basis to show year end amounts. I anticipate having to add a new column to this view each year as years go on...or is there even a way to elimnate this step?
Advice is greatly appreciated.
ID
Name
Year (string value entered)
Amount
I want to have a view that would take that information and give the following:
ID
Name
Amount (if the year value is X) AS X Amount
Amount (if the year value is Y) AS Y Amount
Right now we only have two years worth of data. This record is done on an annual basis to show year end amounts. I anticipate having to add a new column to this view each year as years go on...or is there even a way to elimnate this step?
Advice is greatly appreciated.