Forum » Programiranje » powershell csv file
powershell csv file
![](https://static.slo-tech.com/stili/avatar_gray.gif)
kyloren ::
Zdravo,
imam CSV dokument naslednje strukture:
Time; Avg; Max
--------------
24
21
22
V powershellu pišem skripto kjer želim uvoziti podatke z csv datoteke ter izračunati povprečje in max vrednost.
naredil sem naslednje:
amapak zmeraj dobim odgovor:
Measure-Object : The property Time cannot be found in the input for any objects.
Kaj bi tu lahko bilo narobe?![:|](https://static.slo-tech.com/smeski/icon_confused.gif)
hvala, lp
imam CSV dokument naslednje strukture:
Time; Avg; Max
--------------
24
21
22
V powershellu pišem skripto kjer želim uvoziti podatke z csv datoteke ter izračunati povprečje in max vrednost.
naredil sem naslednje:
$data = Get-content $file | ConvertFrom-Csv $avg = (($data | select -ExpandProperty Time) | Measure-Object -Average).Average
amapak zmeraj dobim odgovor:
Measure-Object : The property Time cannot be found in the input for any objects.
Kaj bi tu lahko bilo narobe?
![:|](https://static.slo-tech.com/smeski/icon_confused.gif)
hvala, lp
![](https://static.slo-tech.com/stili/avatar_gray.gif)
rakda ::
Tale tvoj csv ni po nobenem meni znanem standardu.
Če csv formatiraš sledeče, bo tvoja koda delala:
Time,Avg,Max
24
21
22
lp
Če csv formatiraš sledeče, bo tvoja koda delala:
Time,Avg,Max
24
21
22
lp
![](https://static.slo-tech.com/stili/bel_non_grata.png)
Invictus ::
Comma v CSV pomeni vejico, ne podpičja
.
![;)](https://static.slo-tech.com/smeski/icon_wink.gif)
"Life is hard; it's even harder when you're stupid."
http://goo.gl/2YuS2x
http://goo.gl/2YuS2x
![](https://static.slo-tech.com/stili/avatar_gray.gif)
joze67 ::
$data = Get-content $file | ConvertFrom-Csv -delimiter ';'
Zgodovina sprememb…
- spremenilo: joze67 ()
Vredno ogleda ...
Tema | Ogledi | Zadnje sporočilo | |
---|---|---|---|
Tema | Ogledi | Zadnje sporočilo | |
» | program za pomoč pri tiskanju 200+pdf dokumentovOddelek: Pomoč in nasveti | 2348 (1400) | HotBurek |
» | Bash skriptaOddelek: Programiranje | 3288 (2600) | poweroff |
» | Uvoz txt datoteke v excelOddelek: Programska oprema | 5084 (4721) | sebavet |
» | Dependency InjectionOddelek: Programiranje | 1551 (1319) | abyssus |
» | [c#] shrani text, tabele, slikeOddelek: Programiranje | 1543 (1149) | klemen93 |