Ask User Input Date

during start execution to ask user input like a date and write text is based on user input date in excel

Hi @MD_Farhan1, To perform user input and write text based on the input date in Excel using UiPath, you can follow these steps:

  1. Use the “Input Dialog” activity to prompt the user to enter a date.
  2. Store the user’s input in a variable (e.g., “inputDate”).
  3. Use the “Write Cell” activity to write the user’s input date into a specific cell in an Excel spreadsheet.

Cheers!

@MD_Farhan1
Sequence
├── Input Dialog (Title: “Enter Date”, Label: “Please enter a date:”, Output: UserInputDate) variabletype : date
└── Excel Application Scope (WorkbookPath: “path_to_your_excel_file.xlsx”)
└── Write Cell (Cell: “A1”, Text: UserInputDate)