Please create a Query Report for it.
Query:
SELECT
a.item_code as "Item:Link/Item:120",
SUM(b.actual_qty) as "Total Balance Qty:Float:140"
FROM
`tabItem` a left join `tabBin` b
ON a.item_code = b.item_code
GROUP BY
a.item_code
Output:
I hope this helps.
Thank You!
Thanks… it works…
@NCP Where can i learn this?
Please check it.
thanks…


