Forum Discussion
Anonymous
8 years agoNot applicable
IF Number Ends With
I have a number field with different data: 1.00 1.14 2.00 1.01 I want to write a formula that states if the number ends with .00 then "Parent", if not then "Child" My formula below is ...
- 8 years agoHow about this instead:
Parent =
IF ( 'DataReader vSalesMaster'[SalesOrderLine] = TRUNC( 'DataReader vSalesMaster'[SalesOrderLine]), "Parent", "Child") - 8 years ago
Hi,
Try this calculated column formula
=IF(MOD('DataReader vSalesMaster'[SalesOrderLine],1)=0,"Parent", "Child")
Anonymous
8 years agoNot applicable
Both solutions work great! Thank you so much!
Ashish_Mathur
8 years agoSuper User
You are welcome.