Outlook Folder - New

Hello,
I need help… How to do create new folder in outlook base on the name listed in the excel sheet?

@f5f191b0815b26e83996fd67f

  1. Excel Application Scope (Input: Excel File Path)
    Read Range (Output: dtNames)

  2. Outlook Application Scope
    3. For Each Row (Row in dtNames)
    Create Folder (Folder Name: row(“NameColumn”).ToString())

@f5f191b0815b26e83996fd67f

  1. Use excelfile with the excel file name
  2. Inside that use for each row in excel
  3. Inside the loop use .Folders.Add function…check below link for more

cheers

Hit the 2 error

  1. Save to: dt_Name
    BC30561: ‘Action’ is ambiguous, imported from the namespaces ot types ‘System, Microsoft.Office.Interop.Outlook’.

Argument ‘Range’: Bc30512: Option Strict On disallows implicit conversions from ‘DataTable’ to ‘IReadRangeRef’. The selected value in incompatiable with the property type

@f5f191b0815b26e83996fd67f

can you show some screenshots…looks like in place of range you have a datatable…

for each row in excel is what you are using if you have data in dtatable then use for each row in datatable activity

cheers