Verify that Cell Value Satisfies Data Validation Rules

Introduction

Aspose.Cells for Python via .NET provides the Cell.get_validation_value() method to validate cell values programmatically. If the value in a cell does not satisfy the data validation rule applied to that cell, it returns False, else True.

The following sample code illustrates how the Cell.get_validation_value() method works. First, it enters the value 3 into C1. Because this does not satisfy the data validation rule, the Cell.get_validation_value() method returns False. Then, it enters the value 15 into C1. Because this value satisfies the data validation rule, the Cell.get_validation_value() method returns True. Similarly, it returns False for value 30.

Output

 Is 3 a Valid Value for this Cell: False

Is 15 a Valid Value for this Cell: True

Is 30 a Valid Value for this Cell: False