I have a requirement to fetch 2 large lists and merge data into a single CSV file. Suppose Lists are as below :
List A
Column1
Data1
- Data2
List B
Column2
Data3
Data4
Then Data should be displayed in csv file as below :
- Column1 Column2
- Data1 Data3
- Data2 Data4
Is there any way to achieve this using REST/JSOM ?
Please note that as per the requirement we want to do it multiple times so there should not be any manual work to do.