'Convert Tableau expression to SSRS

I need to convert Tableau expression to SSRS expression. How that gonna looks like in SSRS?

IF(sum(IF [Column1] = "Yes"
THEN 1
ELSE 0
END))>0
THEN'Yes'
ELSE'No'
END


Solution 1:[1]

You can try using this: =IIF(sum(IIF(([Column1] = "Yes"),1,0))>0,"Yes","No")

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Rooba