This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
I need to create a measure or column that should use the Today () function.
I have a table with two columns of dates, one that is due date that is of type null and the other that is extension date and can have null values, to that extent I need to show the number of days that are missing or the Number of days that passed the date of the extension when it is null and the date of expiration when the date of extension is null.
I tried to use the function today () but with no success.
| Dt. Final | Dt. Prorrogação | à vencer (dias) |
| 30/12/2016 | -7 | |
| 08/10/2017 | 275 | |
| 08/09/2015 | 09/12/2015 | -394 |
| 08/09/2016 | 09/05/2016 | -242 |
Solved! Go to Solution.
I created the measure but the following error is occurring:
"A single value for column 'Dt. Extension' in table 'DMEGF_ContractsSupplier' can not be determined." This can happen when a measure refers to a column that contains many values without specifying an aggregation such as min, max, count, or to Get a single result. "
If (ISBLANK (DMEGF_ContractsSupplier);
DMEGF_ContractsProvider [Dt. Final] - TODAY ();
DMEGF_ContractsProvider [Dt. Extension] - TODAY ())
@Anonymous
Hi, Look this thread, i think would be part of the solution
@Anonymoussince you're always dealing with TODAY - you just need to check IF there has been an extenstion to determine which date to use in the subtraction (at least that's how I understand your question)
If that is the case you can try this
Column (Days) =
IF (
ISBLANK ( 'Table'[Dt. Prorrogação] );
'Table'[Dt. Final] - TODAY ();
'Table'[Dt. Prorrogação] - TODAY ()
)
EDIT: You may have to change the Data Type of the Column in the Modeling Tab to Whole Number otherwise will show you dates!
I created the measure but the following error is occurring:
"A single value for column 'Dt. Extension' in table 'DMEGF_ContractsSupplier' can not be determined." This can happen when a measure refers to a column that contains many values without specifying an aggregation such as min, max, count, or to Get a single result. "
If (ISBLANK (DMEGF_ContractsSupplier);
DMEGF_ContractsProvider [Dt. Final] - TODAY ();
DMEGF_ContractsProvider [Dt. Extension] - TODAY ())
@AnonymousThis is a Calculated Column not a Measure!
@Anonymous
If you want a Measure try this instead
Measure =
IF (
ISBLANK ( DMEGF_ContractsProvider[Dt. Extension] );
( MIN ( DMEGF_ContractsProvider[Dt. Final] ) - TODAY () )
* 1;
( MIN ( DMEGF_ContractsProvider[Dt. Extension] ) - TODAY () )
* 1
)Good Luck! ![]()
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 39 | |
| 28 | |
| 27 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 67 | |
| 37 | |
| 32 | |
| 26 | |
| 25 |