Check column name values in sharepoint file using dataiku

AGS
Registered Posts: 5 ✭
I want to retrieve sharepoint file from the library one by one and check if column "Project Name" is same, if not, then email user to check the file.
I have used the plugin and files in folder option to retrieve the files. Have used Group By to check the count. But how do I set email scenario to check count and project name. Or any other way to accomplish this?
Tagged:
Answers
-
Alexandru Dataiker, Dataiku DSS Core Designer, Dataiku DSS ML Practitioner, Dataiku DSS Adv Designer, Registered Posts: 1,285 Dataiker
Hi,
If you have a dataset, you can use a Python step to read that and write the coresponding to send an email.
https://doc.dataiku.com/dss/latest/scenarios/steps.html#execute-python-code
You can send email sdirectly using code in a scenario
https://doc.dataiku.com/dss/latest/scenarios/custom_scenarios.html#send-custom-reports
Thanks