Forum Discussion
Sameer_Kuppanath_Sultan
Dec 11, 2019Brass Contributor
List of Items from Data Entry Form
Hi I have a data entry sheet in the attached excel, i need to get list of department in another column whenever I enter department details in the data entry form automatically (by using formulas)...
- Dec 12, 2019
For such layout
in E5 you may use
=IFERROR(INDEX(dataentry[Department],MATCH(0,INDEX(COUNTIF($E$4:$E4,dataentry[Department]),0),0)),"")
and drag it down till the end of future range. With every new department in A it will appear in B.
Sameer_Kuppanath_Sultan
Dec 12, 2019Brass Contributor
mathetes Whenever I add an item in Table A, (it may repeat) if it’s a new item it should list in Table B
I don’t want to use Pivot Table, since I have to place this list in another big calculation sheet.
Please see the attached sheet for your ref.
JKPieterse
Dec 12, 2019Silver Contributor
Sameer_Kuppanath_Sultan There is no reason why you wouldn't just place the pivottable on a separate worksheet.
- Sameer_Kuppanath_SultanDec 12, 2019Brass Contributor
Because, i need a variety of report in a same table with this list,
any way I got a answer for this. Thank youJKPieterse