Forum Discussion
Libin7963
Helper II
1 year agoone to one relationship issue
I have two tables with one to one relationship as shown below where table 1 is direct query in actual table and 2 is import. In the table visual it is not displaying the rows for 5 and 6 (both refere...
- 1 year ago
Hi try to manage the output and the number of rows that appear throught a measure like this:
Measure =
IF(ISBLANK(MAX(Table2[Reference])), "", MAX(Table2[Reference]))
Try and let me know.
lucadelicio
Impactful Individual
1 year agoHi try to manage the output and the number of rows that appear throught a measure like this:
Measure =
IF(ISBLANK(MAX(Table2[Reference])), "", MAX(Table2[Reference]))
Try and let me know.
Libin7963
Helper II
1 year agoWow, it worked. thank you.
- lucadelicio1 year ago
Impactful Individual
You are welcome.