Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
dosinkevic
Frequent Visitor

IF statement or different solution?

How can I use IF statement in this case or it should be different solution?

 

I neet to run this formula only if Campaign {"date"} = CRM {"date"} then Column =....

Column = 
VAR __tmpTable = ADDCOLUMNS(ALL(crm),"Found",FIND([id],[camp_tracker],,-1))
RETURN COUNTROWS(FILTER(__tmpTable,[Found]<>-1))

 

1 ACCEPTED SOLUTION
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @dosinkevic,

 

Maybe you can try this formula.

Column =
VAR __tmpTable =
    ADDCOLUMNS ( ALL ( crm ), "Found", FIND ( [id], [camp_tracker],, -1 ) )
VAR campaign_date = [date]
RETURN
    COUNTROWS ( FILTER ( __tmpTable, [Found] <> -1 && [date] = campaign_date ) )

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @dosinkevic,

 

Maybe you can try this formula.

Column =
VAR __tmpTable =
    ADDCOLUMNS ( ALL ( crm ), "Found", FIND ( [id], [camp_tracker],, -1 ) )
VAR campaign_date = [date]
RETURN
    COUNTROWS ( FILTER ( __tmpTable, [Found] <> -1 && [date] = campaign_date ) )

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Dale,

It works, thank you for help!

chotu27
Post Patron
Post Patron

@dosinkevic Use the Conditional column feature in editqueries so that you can keep your condition there.

In my case I have two queries Campaign and CRM. I can't select both in  Conditional column, plus I can't add my formula in Output.

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors