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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I need to be able to reference in a SELECTEDVALUE to any of these fields in the parameter group.
This is the parameter of fields:
This is the formula I need to fix:
I would need to know how to reference well to the parameter within the formula.
Thanks in advance
Thank you!
Hi what I usually do instead of using data groups in fiel parameters is to change a bit the code on the parameters itself to manually generate the group like this:
Field Param Example = {
("Country", NAMEOF('Customers'[Country]), 0, "Group 1"),
("Region", NAMEOF('Customers'[Region]), 1, "Group 1"),
("City", NAMEOF('Customers'[City]), 2, "Group 1"),
("Address", NAMEOF('Customers'[Address]), 3, "Group 1"),
("Country", NAMEOF('Customers'[Country]), 0, "Group 2"),
("Region", NAMEOF('Customers'[Region]), 1, "Group 2"),
("City", NAMEOF('Customers'[City]), 2, "Group 2")
}
This way I think its easier to use the SELECTEDVALUE() function on the field parameter itself.
Hope this answer solves your problem!
If you need any additional help please @ me in your reply.
If my reply provided you with a solution, please consider marking it as a solution ✔️ or giving it a kudoe 👍
Thanks!
You can also check out my LinkedIn!
Best regards,
Gonçalo Geraldes