March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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"
)
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
114 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
168 | |
116 | |
63 | |
57 | |
50 |