Hi,
we are currently looking for a possibility to replace an SQL Server with Dataverse. To hit the goal we have to make sure that different types of data validation is possible. Some points I was able to set up, but for one request I don't find a solution. I have a table with 8 colmuns. The distinct value of the first three columns must be unique in the whole table. For example:
| Colmun1 | Column2 | Column3 | |
| 123 | ABC | 1A2B | True |
| 123 | BCD | 1A2B | True |
| 345 | ABC | 2B3C | True |
| 567 | HIJ | 1A2B | True |
| 123 | ABC | 1A2B | False |
In every column it is allowed to have the same value in mulitple rows. But the combination of the values in the first three rows have to be unique. If the value isn't unique you are not allowed to save the entry. Is there any way the set up a validation rule like this in dataverse?