Consulting

Results 1 to 3 of 3

Thread: Tick appropriate box

  1. #1

    Tick appropriate box

    In my excel file, in one sheet user has to select option from drop down menu and in the another sheet excel should tick the appropriate box.
    A sample file is attached wherein user will select Gender in sheet 1, cell B3. If the user select "M", a tick should appear automatically at cell B6 on sheet 2 & so on. How the same can be done?

  2. #2
    You could do it like this:

    - format a cell with the wingdings font
    - enter this formula:
    =IF(LOWER(Sheet1!$B$3)="m";CHAR(254);CHAR(168))
    Regards,

    Jan Karel Pieterse
    Excel MVP jkp-ads.com

  3. #3
    Thanks Jan, your trick is fully working.Many Many Thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •