This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
I purchase order can have multiple receiving, I have a measure that highlights purchase quantity if purchase quantity is not equivalent to receive quantity , but the formula higligihts this purchase number although the total matches the purchase quantity
Mismatch Highlight VADT itrem = VAR PurchaseQuantity = [Purchase Quantity(PO)] VAR GRNQuantity = [Received Quantity(GRN)] VAR Difference = ABS(PurchaseQuantity - GRNQuantity) RETURN IF (Difference > 0, "#EEB3C0", BLANK())
Please help on how can I rectify this issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.