Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
Hello ,
please if you can help me with this measure :
i have 5 conditions need to make a remark column for each single one :
1- if AP_Payments = Blank , give me a remark ( Not Paid )
2- if AP_Lines = 0 or blank , give me ( Voided )
3- ap_lines -sar_payments > 0 , give me partially paid (* note , in ap _payments should be more than 0 to calculate the remaining )
4 - same as # 3 , as overpaid but need to make the remark for it as paid also
5 - if ap_lines = ap_payments , give me( fully paid )
Attached Image
Thank you
Solved! Go to Solution.
@bhelou , You can create a new column like
Switch( True() ,
Isblank([AP_Payments]), "Not Paid",
coalesce([AP_Line],0) =0 , "Voided",
// Add others
[ap_lines] = [ap_payment] , "Fully Paid"
)
Thank you , worked perfect
@bhelou , You can create a new column like
Switch( True() ,
Isblank([AP_Payments]), "Not Paid",
coalesce([AP_Line],0) =0 , "Voided",
// Add others
[ap_lines] = [ap_payment] , "Fully Paid"
)
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 68 | |
| 34 | |
| 33 | |
| 30 |