Forum Discussion
No data available
Hi,
i have a field called product category in the slicer or filter which shows the category of the products sold for current day ,on a particular day there are no products sold at that time the table didn't have any records and the slicer is blank at that time i want to display a message in slicer that "no data available" is this possible.
- Anonymous8 years ago
Hi prudhvi,
>>on a particular day there are no products sold at that time the table didn't have any records and the slicer is blank at that time i want to display a message in slicer that "no data available" is this possible.
Current slicer contains any features to setting 'no data notice'.
In my opinion, I'd like to suggest you to write a measure to check specific table and show the notice if it's empty.
Sample:
Measure = IF ( ISEMPTY ( ALLSELECTED ( 'Table' ) ), "No data avalibale!", "" )
Regards,
Xiaoxin Sheng
1 Reply
- AnonymousNot applicable
Hi prudhvi,
>>on a particular day there are no products sold at that time the table didn't have any records and the slicer is blank at that time i want to display a message in slicer that "no data available" is this possible.
Current slicer contains any features to setting 'no data notice'.
In my opinion, I'd like to suggest you to write a measure to check specific table and show the notice if it's empty.
Sample:
Measure = IF ( ISEMPTY ( ALLSELECTED ( 'Table' ) ), "No data avalibale!", "" )
Regards,
Xiaoxin Sheng