Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
i have table that table have actauls value its combine values for both approved and non approved
TABLE 1 :
Company Code M1 M2 ACTUALS
1A04 5 6 453
2A04 15 16 234
5A04 25 36 134
Another sheet table
ComanyCode Approved and NotApproved
1A04 Approved
2A04 NotApproved
5A04 Approved
now i want final output like
Company Code M1 M2 Approved NotApproved
1A04 5 6 453 0
2A04 15 16 0 234
5A04 25 36 134 0
i have tired lookup function but norking .any idea please
Hi,
Assuming your tables are appropriately related, just add a couple of calculated columns:
Approved =
IF ( RELATED ( 'Table'[Approved and Not Approved] ) = "Approved", [ACTUALS], 0 )
Similar construction for Not Approved.
Regards
Hi ..
getting error paramater is correct
User | Count |
---|---|
23 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
25 | |
12 | |
11 | |
7 | |
6 |