Forum Discussion
TRUE/FALSE from another table
What formula do you use?
I used the same formula, but I see blanks for records which are duplicates
- Sean9 years ago
Community Champion
Okay so how are the two tables related? Are you saying you are getting only one Status per Student_No in Table 1?
- powerbi_bi9 years agoFrequent Visitor
Hi Sean,
Firstly, thank you for the quick responses
I'm sorry, the problem is with my data
I investigated it and found out that Table2 doesnt have all the records as Table1 and hence the BLANKS in Table1
Thanks Sean
- powerbi_bi9 years agoFrequent Visitor
Hi,
I have a DAX formula to calculate total amount
TotalAmount:=CALCULATE (
SUMX (
SUMMARIZE (
Table1,
Table1[Report_Date],
Table1[Student_ID],
Table1[Assignment_No],
Table1[CreditAmount]
),
Table1[CreditAmount]
),
Table1[S_Name] = "TotalFee"
)Now I want to use the same formula based on a True/False column
I want to add IF condition to the above formula
IF its TRUE then Calculate
Thanks