Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi Team,
There are three pages on the PBI report, each page showing the project status.
If we filtered the Project_Status=”Win” on the first page, may I know how to change the calculate column (Win%)? As the Sales_Closed and Sales_Pending value are showing blank on the first page. Is there any way to show the filter out data? If we don’t consider the “Edit Interactions” function. Thanks!
Calculate column:
Win%=
VAR Sales_WIN= CALCULATE( ‘Project’[Sales Amount], Filter (All (‘Project’), [Project_Status]=”Win”))
VAR Sales_Closed= CALCULATE( ‘Project’[Sales Amount], Filter (All (‘Project’), [Project_Status]=”Closed”))
VAR Sales_Pending= CALCULATE( ‘Project’[Sales Amount], Filter (All (‘Project’), [Project_Status]=”Pending”))
Return
Sales_WIN/(Sales_WIN+Sales_Closed+Sales_Pending)
Hi,
You could try change ALL to ALLSELECTED
Win%=
VAR Sales_WIN= CALCULATE( ‘Project’[Sales Amount], Filter (ALLSELECTED (‘Project’), [Project_Status]=”Win”))
VAR Sales_Closed= CALCULATE( ‘Project’[Sales Amount], Filter (ALLSELECTED(‘Project’), [Project_Status]=”Closed”))
VAR Sales_Pending= CALCULATE( ‘Project’[Sales Amount], Filter (ALLSELECTED(‘Project’), [Project_Status]=”Pending”))
Return
Sales_WIN/(Sales_WIN+Sales_Closed+Sales_Pending)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 19 | |
| 13 | |
| 9 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 29 | |
| 24 | |
| 16 | |
| 11 | |
| 10 |