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.
Buenas tardes, quiero generar algo similar en Power BI
hi @cbanda
Not sure if fullly get you, supposing you have a datatable like:
Product | Day | Profit |
A | 1 | 1 |
A | 2 | -1 |
B | 1 | 1 |
B | 2 | -5 |
try to plot a Matrix Visual with Product, Day columns with a measure like:
measure =
IF(
SUM(TableName[Profit])>=0,
UNICHAR(10004),UNICHAR(10006)
)
it worked like:
maybe this is closer to your preference:
Gracias, me distes una pista y sobre todo la función ha aplicar
User | Count |
---|---|
11 | |
9 | |
6 | |
6 | |
5 |
User | Count |
---|---|
22 | |
14 | |
14 | |
9 | |
7 |