The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I want to have the state selected show up as a title for the report, but if there is no selected state, I want it to just say USA. Any help would be greatly appreciated, as I have just begun to use power BI
@Anonymous ,
try this,
Selected country =
IF (
HASONEVALUE ( financials[Country] ) = TRUE (),
MAX ( financials[Country] ),
"USA"
)
Thanks,
Arul