Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
So I am not certain if I went about this the right way but below are the formulas that drive 3 calculated columns based on the specified criteria. Now what I need is to collapse the 3 columns into 1 column called "Term Status". Can I do that and if so, how?
Term Veteran = IF('WW Registrations'[Term Military or Civilian]= "Civilian" && ('WW Registrations'[Term - Prior Branch of Service]="Yes"),"Veteran")
Term Civilian = IF('WW Registrations'[Term Military or Civilian]= "Civilian" && ('WW Registrations'[Term - Prior Branch of Service]="No" || 'WW Registrations'[Term - Prior Branch of Service]=""),"Civilian")
Term Military = IF('WW Registrations'[Term Military or Civilian]= "Miltiary" && ('WW Registrations'[Term - Prior Branch of Service]="Yes" || 'WW Registrations'[Term - Prior Branch of Service]=""),"Military")
Each individual gives a column with the correct information but I need [Term Veteran] + [Term Civilian] + [Term Military] with this information in one column called [Term Status]
Solved! Go to Solution.
The solution is actually just the following:
Term Status = ('WW Registrations'[Term Civilian] & ('WW Registrations'[Term Veteran] & ('WW Registrations'[Term Military])))
The solution is actually just the following:
Term Status = ('WW Registrations'[Term Civilian] & ('WW Registrations'[Term Veteran] & ('WW Registrations'[Term Military])))
Have you try the
CONCATENATE([Term Veteran] + [Term Civilian] + [Term Military])
Yes, it does not work.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 60 | |
| 59 | |
| 41 | |
| 18 | |
| 15 |
| User | Count |
|---|---|
| 106 | |
| 103 | |
| 40 | |
| 29 | |
| 29 |