Forum Discussion
Limit decimal on text and numeric column
Hello Gurus,
I have an issue of shwoing many decimal points on my report pane,
Below I have incuded two images
Image 1 actual data tabel
Image 2 repot page
My VALUE column contains both numaric and text values, hence I cannot control the decimal points on the repot page. I am pretty sure there should be a way to get this done. VALUE column in the tabel must cater for numaric and text type value, that is the business requirement.
Can you please assist me on this. Your help is much appriciated.
Image 1
Image 2
Hi amalrio ,
Would you please use the following measure:
Measure = IF(ISERROR(VALUE(MAX('Table'[VALUE]))),MAX('Table'[VALUE]),FIXED(VALUE(MAX('Table'[VALUE])),4,1))In my sample data, I have a column contains both numaric and text values and I want to control the decimal points to 4.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai
3 Replies
- amitchandak
Super User
amalrio , refer if this can help
- v-deddai1-msft
Community Support
Hi amalrio ,
Would you please use the following measure:
Measure = IF(ISERROR(VALUE(MAX('Table'[VALUE]))),MAX('Table'[VALUE]),FIXED(VALUE(MAX('Table'[VALUE])),4,1))In my sample data, I have a column contains both numaric and text values and I want to control the decimal points to 4.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Best Regards,
Dedmon Dai