Forum Discussion
IF statement and conditions
- Anonymous1 year ago
Hi JK-1,
Thank you for reaching out to the Microsoft Fabric Forum Community. And also thanks to Nasif_Azam , techies and DataNinja777 for Prompt and helpful response.
Just following up to see if the solution provided was helpful in resolving your issue. Please feel free to let us know if you need any further assistance.
If the response addressed your query, kindly mark it as Accepted Solution and click Yes if you found it helpful this will benefit others in the community as well.
Best regards,
Prasanna Kumar
Hi JK-1 if you prefer to use nested if, please try this calculated column
Result =
IF (
Table[CompanyNumber] = "Company2",
IF (
Table[Letter Received] = "No" && ISBLANK(Table[Responded]),
"Check",
"Pass"
),
IF (
Table[Letter Received] <> "No" && ISBLANK(Table[Responded]),
"Check",
"Pass"
)
)