Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How to add two cloumns with the same name from different tables. It needs to be dymanic, because i have columns based on months. Below is the sample data. which i would use to calculate the moving 12 month average for attrition.

Transferout    Oct'11   Nov'11
3310ED      
3310FL      
3310HD      1
3310PZ      
3310RC       
3310SH      
3310SM      1 

Terinations Oct'11  Nov'11
3310ED      
3310FL      
3310HD      1 
3310PZ      1 
3310RC      

So according to the column name and dept id in the row filed the above two tables needs to be added and later divided by the head count of the respective dept ids using the same column headings in a diff table

share|improve this question

1 Answer

Looks like you can use the LOOKUPVALUE function or the RELATED function (if the tables are related).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.