Create a third column called Marital Status. Right click on the column header and select Column Info. Click on Column Properties and select Formula. Click on Edit Formula. Double-click inside the red rectangle and enter the following code:
If (
:Column 1 == 1 & :Column 2 == 0, "Single",
:Column 1 == 0 & :Column 2 == 1, "Married",
:Column 1 == 1 & :Column 2 == 1, "Divorced"
)
This assumes that your first two columns are called "Column 1" and "Column 2".