We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi! So I have the below table report in my Power Bi report namely Final Time Allocation.
Notice that the TotalTimeLoggedOngoing cells for Avbob and Float are empty, I want to make every other cell in TotalTimeLoggedOngoing equal to the same as whatever BancX equals.
Is there a way that I can do this? Please assist.
Solved! Go to Solution.
@Shaun_Fourie First Identify the value of TotalTimeLoggedOngoing for BancX
DAX
BancX_TotalTimeLoggedOngoing =
CALCULATE(
MAX('Final Time Allocation'[TotalTimeLoggedOngoing]),
'Final Time Allocation'[Customer] = "BancX"
)
Next, create a new calculated column that will fill the empty cells in TotalTimeLoggedOngoing with the value from BancX.
DAX
TotalTimeLoggedOngoing_Filled =
IF(
ISBLANK('Final Time Allocation'[TotalTimeLoggedOngoing]),
[BancX_TotalTimeLoggedOngoing],
'Final Time Allocation'[TotalTimeLoggedOngoing]
)
Use the new column in your report: Replace the TotalTimeLoggedOngoing column in your report with the new TotalTimeLoggedOngoing_Filled column.
Proud to be a Super User! |
|
Resolved! Thank you so much for your time and assistance 🙂
@Shaun_Fourie First Identify the value of TotalTimeLoggedOngoing for BancX
DAX
BancX_TotalTimeLoggedOngoing =
CALCULATE(
MAX('Final Time Allocation'[TotalTimeLoggedOngoing]),
'Final Time Allocation'[Customer] = "BancX"
)
Next, create a new calculated column that will fill the empty cells in TotalTimeLoggedOngoing with the value from BancX.
DAX
TotalTimeLoggedOngoing_Filled =
IF(
ISBLANK('Final Time Allocation'[TotalTimeLoggedOngoing]),
[BancX_TotalTimeLoggedOngoing],
'Final Time Allocation'[TotalTimeLoggedOngoing]
)
Use the new column in your report: Replace the TotalTimeLoggedOngoing column in your report with the new TotalTimeLoggedOngoing_Filled column.
Proud to be a Super User! |
|
Resolved! Thank you so much for your time and assistance 🙂
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 38 | |
| 33 | |
| 17 | |
| 17 |
| User | Count |
|---|---|
| 67 | |
| 62 | |
| 38 | |
| 34 | |
| 22 |