Forum Discussion
Default value on Visual Card
- 1 year ago
Hey AllanBerces ,
You can use nested SELECTEDVALUE, or some SWITCH, IFs:
BridgePick = SELECTEDVALUE ( 'Bridge'[Bridge], SELECTEDVALUE ( 'POB_PLAN&ACTUAL'[Bridge], "Default" ) )SELECTEDVALUE is great here, because if there's more than value for particular column, it's gonna return BLANK, therefore calling fallback value.
- 1 year ago
Hi AllanBerces
I believe this could be done by checking if any value is selected in the slicer
We can have a measure for that such as:
IsBridgeSelected = IF( ISFILTERED(Bridge[BridgeColumn]), // Replace BridgeColumn by your actual bridge key/column 1, 0 )Then accordingly we can create the measure to be used within the table
CardValue = IF( [IsBridgeSelected] = 1, CALCULATE( SUM(POB_PLAN[Value]), POB_PLAN[Week] = [CurrentWeek] ), CALCULATE( SUM(POB_PLAN&ACTUAL[Value]), POB_PLAN&ACTUAL[Week] = [CurrentWeek] ) )Adjust the actual column names based on the desired measures, you could also have the selected value as a variable to check if the anything is selected within the slicer and then use the measure within the card visual. Please provide more context if this doesnt help.
- 1 year ago
Use a measure like this:
Card Value =
VAR Sel = SELECTEDVALUE(Bridge[Bridge])
RETURN
IF (
ISBLANK(Sel),
CALCULATE([Your Measure], ALL(Bridge), POB_PLANACTUAL),
[Your Measure]
)
If slicer has A/B/C → show that.
If slicer is blank → default to POB_PLANACTUAL.
Please include, in a usable format, not an image, a small set of rows for each of the tables involved in your request and show the data model in a picture, so that we can import the tables in Power BI and reproduce the data model. The subset of rows you provide, even is just a subset of the original tables, must cover your issue or question completely. Do not include sensitive information and do not include anything that is unrelated to the issue or question. Please show the expected outcome based on the sample data you provided and make sure, in case you show a Power BI visual, to clarify the columns used in the grouping sections of the visual.
Need help uploading data? click here
Want faster answers? click here⁸