Need Help with the Level 3 Assignment 2 | Performer | Assigning Report Download Path

I am getting error in "System1_CreateYearlyReport.xaml’ while assigning the value to Variable “ReportFilePath”
The value I have tried so far are as below -

  • List item

path.Combine(Environment.CurrentDirectory, in_ReportDownloadPath,“Report-” +in_TaxID+ “-” +in_Year+ “-” +month.ToString+ “.csv”)

path.Combine(Environment.CurrentDirectory, in_ReportDownloadPath,“Report-” +in_TaxID.ToString+ “-” +in_Year.ToString+ “-” +month.ToString+ “.csv”)

path.Combine(Environment.CurrentDirectory, in_ReportDownloadPath,“Report-” +in_TaxID.ToString()+ “-” +in_Year.ToString()+ “-” +month.ToString()+ “.csv”)

The error message is similar every time. Following is the error -

Activity Name Assign
Message Value cannot be null
parameter name: path2
Global Exception Handler N/A

“in_ReportDownloadPath” Argument is created as “String”.

Please help!

1 Like

Hi @Anurag_Thakur
Welcome to the community forum!

Could you post screenshots of your workflows and arguments?

Thanks

1 Like

Hello @Anurag_Thakur
Please check the arugment value before combine the path.
One of the arugment has null value.

Thanks

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.